.auth-vemail-signup {
    max-width: 520px;
    margin: 0 auto;
}

.auth-vemail-signup__section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-vemail-signup__title {
    /* margin: 0;
    font-size: 2.25rem;
    line-height: 1.15;
    font-weight: 700;
    color: #2f2f2f;
    text-align: center; */
    color: var(--text-icon-text-title, #2A2A2A);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px; /* 125% */
}

.auth-vemail-signup__subtitle {
    /* margin: 0;
    color: #515151;
    font-size: 1.15rem;
    text-align: center; */
    color: var(--text-icon-text-subtitle, #7F7F7F);
    text-align: center;
    /* Body/medium */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.auth-vemail-signup__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.auth-vemail-signup__field label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3a3a3a;
    font-size: 0.95rem;
}

.auth-vemail-signup__field .form-control {
    border-radius: 8px;
    min-height: 48px;
    padding-inline: 1rem;
    border: 1px solid #e0e0e0;
}

/* Step 1 email field more rounded as per design */
#email.form-control {
    border-radius: 8px;
}

#email.form-control:focus {
    border: 1px solid #F47F20;
    box-shadow: none;
}

#email.form-control.is-invalid:focus {
    border-color: red;
    box-shadow: none;
}

.auth-vemail-signup__group-title {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.auth-vemail-signup__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.auth-vemail-signup__btn-back,
.auth-vemail-signup__btn-next {
    flex: 1;
    min-height: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.auth-vemail-signup__btn-back {
    background: #f1f1f1;
    border: none;
    color: #404040;
}

.auth-vemail-signup__btn-back:hover {
    background: #e5e5e5;
    color: #333;
    text-decoration: none;
}

.auth-vemail-signup .auth-vemail-signup__btn-next {
    background: var(--Color-Primary-primary-Edra) !important;
    border: none;
    color: #fff !important;
}

.auth-vemail-signup .auth-vemail-signup__btn-next:hover,
.auth-vemail-signup .auth-vemail-signup__btn-next:focus,
.auth-vemail-signup .auth-vemail-signup__btn-next:active {
    background: var(--Color-Primary-primary-Edra) !important;
    opacity: 0.9;
    color: #fff !important;
    text-decoration: none;
}

/* Divider */
.auth-vemail-signup__divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: #9e9e9e;
    font-size: 0.9rem;
}

.auth-vemail-signup__divider::before,
.auth-vemail-signup__divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.auth-vemail-signup__divider span {
    padding: 0 1rem;
}

/* External Methods */
.auth-vemail-signup__external-methods .login-methods {
    display: flex;
    gap: 1rem;
}

.auth-vemail-signup__external-methods .method-wrapper {
    flex: 1;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 0.75rem;
    text-decoration: none;
    color: #404040;
}

.auth-vemail-signup__external-methods .method-wrapper:hover {
    background: #f9f9f9;
}

.auth-vemail-signup__external-methods .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.auth-vemail-signup__external-methods svg path {
    stroke: #404040;
}

/* Modal Overlay */
.auth-vemail-signup__modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-vemail-signup__modal {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.auth-vemail-signup__confirm-pretitle {
    color: #515151;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.auth-vemail-signup__confirm-school {
    color: #2b2b2b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.auth-vemail-signup__confirm-subtitle {
    color: #515151;
    font-size: 1rem;
    margin: 0px;
}

@media screen and (max-width: 767.98px) {
    #page.login-landing > .login-panel-s2 > .panel-right {
        min-height: 100svh;
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    #page.login-landing > .login-panel-s2 > .panel-right > .content {
        flex: 1 0 auto;
        padding-bottom: 1rem;
    }

    #page.login-landing > .login-panel-s2 > .panel-right > .site-links {
        position: static;
        width: 100%;
        margin-top: auto;
        padding: 0 1rem 1.375rem;
    }

    .auth-vemail-signup {
        padding-bottom: 1rem;
    }
}
