﻿

.card {
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border-radius: 12px;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #4a0de0;
}

.form-check {
    padding: 0.15rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.form-check-label {
    font-size: 0.875rem;
    line-height: 1.4;
}

.form-check-input {
    margin: 0;
    border-color: #ddd;
}

    .form-check-input:focus {
        box-shadow: none;
        border-color: #ddd;
    }

    .form-check-input:checked {
        background-color: #e62889;
        border-color: #e62889;
    }

    .form-check-input:hover {
        border-color: #cc2379;
    }

    .form-check-input:checked + .form-check-label {
        color: #4a0de0;
        font-weight: 600;
    }

.form-check-label {
    padding-left: 0.4rem;
    margin: 0;
    line-height: 1;
    color:#526077;
}




.test-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(193, 137, 78, 0.03);
    border-radius: 12px;
}

.test-subtitle {
    color: #96683d;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .test-subtitle i {
        font-size: 1.4rem;
        opacity: 0.9;
    }

.test-intro p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
}

.info-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(193, 137, 78, 0.04);
    border-radius: 8px;
    margin-top: 2rem;
}

    .info-note i {
        color: #4a0de0;
        font-size: 0.875rem;
        margin-top: 0.15rem;
        opacity: 0.8;
    }

    .info-note p {
        margin: 0;
        color: #666;
        line-height: 1.4;
        font-size: 0.8125rem;
    }

    .info-note em {
        color: #e62889;
        font-style: normal;
        font-weight: 500;
    }


