/* Become a Distributor Confirmation Page Styles */

/* Form Title Styles */
.form-title {
    font-family: 'Roboto';
    font-weight: 700;
    line-height: 1.3;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
}

.line1, .line2 {
    font-size: clamp(12px, 3vw, 24px);
    display: block;
    white-space: nowrap;
}

.line1 {
    margin-bottom: 0;
}

.line2 {
    margin-top: 0;
}

/* Form Container Styles */
.form-container {
    background-color: #d9d9d9;
    border-top: 10px solid #F59E0B;
    width: 100%;
    padding: 2rem;
}

@media (min-width: 768px) {
    .form-container {
        padding: 4rem;
    }
}

/* Question Box Styles */
.question-item {
    background-color: white;
    padding: 1.5rem 3rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: #111827;
    max-width: 85%;
}

.question-text {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

/* Custom Radio Button Styles */
.radio-label {
    cursor: pointer;
    color: black;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-input {
    display: none;
}

.white-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.white-circle i {
    color: #9ca3af;
    font-weight: bold;
    font-size: 20px;
    transition: color 0.3s ease;
}

/* Selected state - navy blue background with white icon */
.white-circle.selected {
    background-color: #0E367C;
}

.white-circle.selected i {
    color: #ffffff;
}

.answer-text {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

/* Button Styles */
.btn-navy {
    background-color: #0E367C;
    border-color: #0E367C;
    color: white;
    font-size: 15px;
    font-family: 'Open Sans';
    font-weight: 400;
    font-style: regular;
    padding: 0.5rem 2rem;
    border-radius: 0.25rem;
}

.btn-navy:hover {
    background-color: #052a63;
    border-color: #052a63;
    color: white;
}

.btn-navy:focus {
    background-color: #0E367C;
    border-color: #0E367C;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(14, 54, 124, 0.5);
}

/* Question Row Spacing */
.question-row {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .question-item {
        padding: 1.5rem 1.5rem;
        max-width: 100%;
    }

    .form-container {
        padding: 2rem 1rem;
    }

      /* Form title responsive scaling */
    .form-title {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .line1, .line2 {
        font-size: clamp(12px, 3vw, 24px) !important;
        white-space: nowrap !important;
    }

    .line1 {
        margin-bottom: 0 !important;
    }

    .line2 {
        margin-top: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .question-item {
        max-width: 75%;
    }
}