﻿#SignUpForm {
    color: white;
}

.k-step {
    font-size: 18px;
}

.signup-step-content {
    color: white;
    background: linear-gradient(0deg, rgba(240, 242, 248, 0.00), rgba(12, 66, 121, 0.08)), #ffffff20;
    border-radius: 25px;
    padding: 10px;
}

.signup-step-content {
    color: white;
}

.k-stepper .k-step-current .k-step-indicator {
    color: white;
    background-color: #E1251B;
    border-color: #E1251B;
}

.k-stepper .k-step-done .k-step-indicator {
    color: white;
    background-color: #54565A;
    border-color: #54565A;
}
/* Container fills overlay height and scrolls if needed */
.signup-overlay-container {
    height: 100%;
    overflow-y: auto;
    padding: 2rem;
}

/* Stepper width + centering */
.stepper-head {
    width: 100%; /* match Bootstrap col width */
    margin: 0 auto;
    background: linear-gradient(0deg, rgba(240, 242, 248, 0.00), rgba(12, 66, 121, 0.08)), #ffffff20;
    border-radius: 25px;
    padding: 10px;
    margin-bottom: 1.2rem;
}

    .stepper-head .k-step-list {
        justify-content: center !important;
    }

    /* White connector line between steps */
    .stepper-head .k-step::after {
        background-color: white !important;
        height: 2px; /* thickness */
        top: 50%;
        transform: translateY(-50%);
    }

/
/* Step content max width for readability + white text */
.signup-step-content {
    max-width: 700px;
    margin: 0 auto;
    color: #fff; /* make all text white */
}

.signup-step-content ul {
    padding-left: 1.2rem;
}

.signup-step-content ol {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

/* Right panel styling */
.signup-side-panel {
    padding: 2rem 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-step-content ul,
.signup-step-content ol,
.signup-step-content li,
.signup-step-content p,
.signup-step-content h1,
.signup-step-content h2,
.signup-step-content h3 {
    color: #fff;
}

.signup-step-content a {
    color: #fff;
    text-decoration: underline;
}

    .signup-step-content a:hover {
        color: #ddd;
    }

.signup-info {
    color: white;
}

#stepper {
    display: none !important;
}

.k-step-text {
    color: white;
}

.responsive-width {
    width: 50%;
}

#stepper .k-progressbar {
    position: absolute;
    margin-left: 12%;
    width: 75%;
    top: 30%;
}

/* Native DOB date input: brand it to match the other webcafe-input-text pills.
   The field box already matches (white pill via .webcafe-input-text); these rules
   fix the browser-default parts. The popup calendar is browser-rendered and not
   CSS-themeable beyond these two levers: color-scheme:light keeps the popup and
   spin controls light so they suit the white field even when the OS is in dark
   mode, and accent-color tints the selected day in the desktop (Chrome/Edge)
   popup with the brand red used for the current step marker. The calendar icon is
   also swapped for a brand-blue one (default is black and looks off against the
   deep-blue form). */
.date-control {
    color-scheme: light;
    accent-color: #E1251B;
}

    .date-control::-webkit-calendar-picker-indicator {
        /* brand-blue (#09539A) calendar glyph */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2309539A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 16px 16px;
        opacity: 1;
        cursor: pointer;
        border-radius: 4px;
        transition: opacity 0.2s ease;
    }

        .date-control::-webkit-calendar-picker-indicator:hover {
            opacity: 0.6;
        }

/* Modal background + blur */
#smsConfirm .modal-content {
    background: rgba(3, 41, 68, 0.91);
    backdrop-filter: blur(5.15px);
    -webkit-backdrop-filter: blur(5.15px);
    border-radius: 12px;
    padding: 20px;
    color: white;
}

/* Center text inside inputs + rounded edges */
.sms-verification-number {
    width: 60px;
    height: 80px;
    font-size: 36px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: white;
    /* Embedded / inset feel */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.25);
}

    /* Remove Bootstrap’s default input padding inside grid */
    .sms-verification-number.col-sm-1 {
        padding: 0;
    }

/* Optional: spacing between inputs */
.sms-verification-number {
    margin: 0 6px;
}

/* Headings and text inside modal */
/*#smsConfirm h1,
#smsConfirm div,
#smsConfirm span {
    color: white !important;
}*/

/* Resend SMS link styling */
#smsConfirm .resend-sms-link {
    color: rgb(225, 37, 27) !important;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

    #smsConfirm .resend-sms-link:hover {
        color: rgb(225, 37, 27) !important;
        text-decoration: underline;
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.45);
    }

.verify-sms-message {
    margin-bottom: 12px;
}

#otp-btn-wrapper {
    margin-top: 12px;
}



@media (min-width: 768px) {
    .responsive-width {
        width: auto;
    }

    #stepper {
        display: block !important;
    }
}

@media (max-width: 767px) {
    /* Mobile-first: keep the progress indicator visible so the user always sees
       which step of 4 they are on. Compact form: numbered circles only, labels
       hidden. */
    #stepper {
        display: block !important;
    }

        #stepper .k-step-label,
        #stepper .k-step-text {
            display: none !important;
        }

        #stepper .k-step-indicator {
            width: 28px;
            height: 28px;
            font-size: 14px;
        }

        /* Kendo positions the connector line via inline margin-left/width (which
           span first-to-last circle centre), so horizontal placement is already
           correct and cannot be overridden from CSS. Only its vertical offset is
           set in the stylesheet: the desktop top:30% lands too high on the shorter
           mobile stepper, leaving the line above the circles. Re-centre it on the
           circle row. */
        #stepper .k-progressbar {
            top: 50%;
            transform: translateY(-50%);
        }

    .stepper-head {
        padding: 8px;
        margin-bottom: 1rem;
    }
}
