﻿#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;
}

.k-step-text {
    color: white;
}

.responsive-width {
    width: 50%;
}

/* 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);
    }


@media (min-width: 768px) {
    .responsive-width {
        width: auto;
    }
}
