/* ==========================================
   LOGIN PAGE
========================================== */

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #f5f7fa;
}


/* ==========================================
   LOGIN CARD
========================================== */

.login-card {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    padding: 42px 45px;
    border: 1px solid #e5e9ef;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}


/* ==========================================
   SCHOOL BRAND
========================================== */

.login-brand {
    text-align: center;
    margin-bottom: 32px;
}


.school-logo {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f5f9b;
    color: #ffffff;
    border-radius: 6px;
    font-size: 27px;
    font-weight: 700;
}


.school-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #173f68;
}


.school-subtitle {
    margin-top: 2px;
    font-size: 14px;
    color: #718096;
    letter-spacing: 0.5px;
}


/* ==========================================
   HEADER
========================================== */

.login-header {
    margin-bottom: 28px;
}


    .login-header h1 {
        margin: 0;
        text-align: center;
        color: #172b4d;
        font-size: 27px;
        font-weight: 700;
    }


    .login-header p {
        margin: 7px 0 0;
        text-align: center;
        color: #7b8794;
        font-size: 14px;
    }


/* ==========================================
   FORM
========================================== */

.form-group {
    margin-bottom: 20px;
}


    .form-group label {
        display: block;
        margin-bottom: 7px;
        color: #344054;
        font-size: 14px;
        font-weight: 600;
    }


.form-control-custom {
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    padding: 0 14px;
    border: 1px solid #d7dde5;
    border-radius: 6px;
    background: #ffffff;
    color: #1f2937;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}


    .form-control-custom::placeholder {
        color: #a0a8b3;
    }


    .form-control-custom:focus {
        border-color: #1f5f9b;
        box-shadow: 0 0 0 3px rgba(31, 95, 155, 0.10);
    }


/* ==========================================
   REMEMBER / FORGOT
========================================== */

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    margin-bottom: 23px;
    font-size: 13px;
}


.remember-me {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #667085;
    cursor: pointer;
}


    .remember-me input {
        width: 15px;
        height: 15px;
        cursor: pointer;
    }


.login-options a {
    color: #1f5f9b;
    font-weight: 600;
    text-decoration: none;
}


    .login-options a:hover {
        text-decoration: underline;
    }


/* ==========================================
   LOGIN BUTTON
========================================== */

.login-button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 6px;
    background: #1f5f9b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}


    .login-button:hover {
        background: #174d80;
    }


    .login-button:active {
        transform: translateY(1px);
    }


/* ==========================================
   REGISTER
========================================== */

.register-text {
    margin-top: 23px;
    text-align: center;
    font-size: 13px;
    color: #7b8794;
}


    .register-text a {
        margin-left: 4px;
        color: #1f5f9b;
        font-weight: 600;
        text-decoration: none;
    }


        .register-text a:hover {
            text-decoration: underline;
        }


/* ==========================================
   DIVIDER
========================================== */

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 600;
}


    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e5e7eb;
    }


/* ==========================================
   EXTERNAL LOGIN
========================================== */

.external-login {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


    .external-login form {
        width: 100%;
    }


.external-button {
    width: 100%;
    height: 44px;
    border: 1px solid #d7dde5;
    border-radius: 6px;
    background: #ffffff;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}


    .external-button:hover {
        background: #f8fafc;
        border-color: #b8c2cf;
    }


/* ==========================================
   RESEND CONFIRMATION
========================================== */

.resend-confirmation {
    margin-top: 22px;
    text-align: center;
}


    .resend-confirmation a {
        color: #667085;
        font-size: 12px;
        text-decoration: none;
    }


        .resend-confirmation a:hover {
            color: #1f5f9b;
            text-decoration: underline;
        }


/* ==========================================
   VALIDATION
========================================== */

.validation-summary {
    margin-bottom: 18px;
    padding: 10px 12px;
    border-radius: 5px;
    background: #fff1f2;
    color: #b42318;
    font-size: 13px;
}


.field-validation {
    display: block;
    margin-top: 5px;
    color: #d92d20;
    font-size: 12px;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 500px) {

    .login-page {
        padding: 20px 15px;
    }

    .login-card {
        padding: 35px 25px;
        border-radius: 7px;
    }

    .school-name {
        font-size: 22px;
    }

    .login-header h1 {
        font-size: 25px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 360px) {

    .login-page {
        padding: 10px;
    }

    .login-card {
        padding: 30px 20px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}










/* =========================================================
   LOGIN PAGE
   ========================================================= */
/*.login-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
    background: #f5f7fa;
}*/


/* =========================================================
   LOGIN CARD
   ========================================================= */

/*.login-card {
    width: 100%;
    max-width: 430px;
    box-sizing: border-box;
    padding: 42px 45px;
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.08);
}*/


/* =========================================================
   BRAND
   ========================================================= */

/*.login-brand {
    text-align: center;
    margin-bottom: 32px;
}

.school-logo {
    width: 58px;
    height: 58px;
    margin: 0 auto 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f5f9b;
    color: #ffffff;
    border-radius: 8px;
    font-size: 27px;
    font-weight: 700;
    box-shadow: 0 5px 14px rgba(31, 95, 155, 0.18);
}

.school-name {
    margin: 0;
    color: #173f68;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 1.4px;
}

.school-subtitle {
    margin: 4px 0 0;
    color: #718096;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.4px;
}*/


/* =========================================================
   LOGIN HEADER
   ========================================================= */

/*.login-header {
    margin-bottom: 28px;
}

    .login-header h1 {
        margin: 0;
        text-align: center;
        color: #172b4d;
        font-size: 27px;
        font-weight: 700;
        line-height: 1.3;
    }

    .login-header p {
        margin: 7px 0 0;
        text-align: center;
        color: #7b8794;
        font-size: 14px;
        line-height: 1.5;
    }*/


/* =========================================================
   FORM
   ========================================================= */

/*.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 7px;
        color: #344054;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }*/


/* =========================================================
   INPUT
   ========================================================= */

/*.form-control-custom {
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    padding: 0 14px;
    border: 1px solid #d7dde5;
    border-radius: 6px;
    background: #ffffff;
    color: #1f2937;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

    .form-control-custom::placeholder {
        color: #a0a8b3;
    }

    .form-control-custom:hover {
        border-color: #b8c2cf;
    }

    .form-control-custom:focus {
        border-color: #1f5f9b;
        box-shadow: 0 0 0 3px rgba(31, 95, 155, 0.10);
    }*/


/* =========================================================
   LOGIN OPTIONS
   ========================================================= */

/*.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 4px;
    margin-bottom: 23px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #667085;
    cursor: pointer;
    white-space: nowrap;
}

    .remember-me input {
        width: 15px;
        height: 15px;
        margin: 0;
        cursor: pointer;
        accent-color: #1f5f9b;
    }

.login-options a {
    color: #1f5f9b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .login-options a:hover {
        color: #174d80;
        text-decoration: underline;
    }*/


/* =========================================================
   LOGIN BUTTON
   ========================================================= */

/*.login-button {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    border: none;
    border-radius: 6px;
    background: #1f5f9b;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

    .login-button:hover {
        background: #174d80;
        box-shadow: 0 5px 14px rgba(31, 95, 155, 0.18);
    }

    .login-button:focus-visible {
        outline: 3px solid rgba(31, 95, 155, 0.20);
        outline-offset: 2px;
    }

    .login-button:active {
        transform: translateY(1px);
    }

    .login-button:disabled {
        opacity: 0.65;
        cursor: not-allowed;
        box-shadow: none;
    }*/


/* =========================================================
   REGISTER
   ========================================================= */

/*.register-text {
    margin-top: 23px;
    text-align: center;
    color: #7b8794;
    font-size: 13px;
    line-height: 1.5;
}

    .register-text a {
        margin-left: 4px;
        color: #1f5f9b;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .register-text a:hover {
            color: #174d80;
            text-decoration: underline;
        }*/


/* =========================================================
   DIVIDER
   ========================================================= */

/*.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e5e7eb;
    }*/


/* =========================================================
   EXTERNAL LOGIN
   ========================================================= */

/*.external-login {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .external-login form {
        width: 100%;
    }

.external-button {
    width: 100%;
    min-height: 44px;
    padding: 0 15px;
    border: 1px solid #d7dde5;
    border-radius: 6px;
    background: #ffffff;
    color: #344054;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .external-button:hover {
        background: #f8fafc;
        border-color: #b8c2cf;
    }

    .external-button:focus-visible {
        outline: 3px solid rgba(31, 95, 155, 0.10);
        outline-offset: 1px;
    }*/


/* =========================================================
   RESEND CONFIRMATION
   ========================================================= */

/*.resend-confirmation {
    margin-top: 22px;
    text-align: center;
}

    .resend-confirmation a {
        color: #667085;
        font-size: 12px;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .resend-confirmation a:hover {
            color: #1f5f9b;
            text-decoration: underline;
        }*/


/* =========================================================
   VALIDATION
   ========================================================= */

/*.validation-summary {
    margin-bottom: 18px;
    padding: 10px 12px;
    border: 1px solid #fecdd3;
    border-radius: 5px;
    background: #fff1f2;
    color: #b42318;
    font-size: 13px;
    line-height: 1.5;
}

.field-validation {
    display: block;
    margin-top: 5px;
    color: #d92d20;
    font-size: 12px;
    line-height: 1.4;
}*/


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

/*@media (max-width: 600px) {

    .login-page {
        padding: 30px 16px;
    }

    .login-card {
        max-width: 430px;
        padding: 36px 30px;
    }

    .school-name {
        font-size: 22px;
    }

    .login-header h1 {
        font-size: 25px;
    }
}*/


/* =========================================================
   MOBILE
   ========================================================= */

/*@media (max-width: 480px) {

    .login-page {
        min-height: 100dvh;
        padding: 20px 14px;
    }

    .login-card {
        width: 100%;
        padding: 32px 24px;
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(16, 24, 40, 0.07);
    }

    .login-brand {
        margin-bottom: 27px;
    }

    .school-logo {
        width: 54px;
        height: 54px;
        margin-bottom: 11px;
        font-size: 25px;
    }

    .school-name {
        font-size: 21px;
        letter-spacing: 1.1px;
    }

    .school-subtitle {
        font-size: 13px;
    }

    .login-header {
        margin-bottom: 25px;
    }

        .login-header h1 {
            font-size: 24px;
        }

        .login-header p {
            font-size: 13px;
        }

    .form-group {
        margin-bottom: 18px;
    }

    .form-control-custom,
    .login-button {
        height: 47px;
    }

    .login-options {
        margin-bottom: 21px;
    }
}*/


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

/*@media (max-width: 360px) {

    .login-page {
        padding: 12px 10px;
    }

    .login-card {
        padding: 28px 18px;
        border-radius: 7px;
    }

    .login-brand {
        margin-bottom: 24px;
    }

    .school-logo {
        width: 50px;
        height: 50px;
        font-size: 23px;
    }

    .school-name {
        font-size: 19px;
        letter-spacing: 0.8px;
    }

    .school-subtitle {
        font-size: 12px;
    }

    .login-header h1 {
        font-size: 22px;
    }

    .login-header p {
        font-size: 12px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }

        .login-options a {
            align-self: flex-end;
        }

    .register-text {
        font-size: 12px;
    }
}*/


/* =========================================================
   HEIGHT-BASED RESPONSIVENESS
   Useful for small phones in landscape mode
   ========================================================= */

/*@media (max-height: 650px) and (min-width: 481px) {

    .login-page {
        align-items: flex-start;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .login-card {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .login-brand {
        margin-bottom: 22px;
    }
}*/


/* =========================================================
   REDUCED MOTION
   Accessibility
   ========================================================= */

/*@media (prefers-reduced-motion: reduce) {

    .form-control-custom,
    .login-button,
    .login-options a,
    .register-text a,
    .external-button,
    .resend-confirmation a {
        transition: none;
    }

        .login-button:active {
            transform: none;
        }
}*/











/*



 ==========================================
   LOGIN PAGE
========================================== 

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #f5f7fa;
}


 ==========================================
   LOGIN CARD
========================================== 

.login-card {
    width: 100%;
    max-width: 430px;
    background: #ffffff;
    padding: 42px 45px;
    border: 1px solid #e5e9ef;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}


 ==========================================
   SCHOOL BRAND
========================================== 

.login-brand {
    text-align: center;
    margin-bottom: 32px;
}


.school-logo {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f5f9b;
    color: #ffffff;
    border-radius: 6px;
    font-size: 27px;
    font-weight: 700;
}


.school-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #173f68;
}


.school-subtitle {
    margin-top: 2px;
    font-size: 14px;
    color: #718096;
    letter-spacing: 0.5px;
}


 ==========================================
   HEADER
========================================== 

.login-header {
    margin-bottom: 28px;
}


    .login-header h1 {
        margin: 0;
        text-align: center;
        color: #172b4d;
        font-size: 27px;
        font-weight: 700;
    }


    .login-header p {
        margin: 7px 0 0;
        text-align: center;
        color: #7b8794;
        font-size: 14px;
    }


 ==========================================
   FORM
========================================== 

.form-group {
    margin-bottom: 20px;
}


    .form-group label {
        display: block;
        margin-bottom: 7px;
        color: #344054;
        font-size: 14px;
        font-weight: 600;
    }


.form-control-custom {
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    padding: 0 14px;
    border: 1px solid #d7dde5;
    border-radius: 6px;
    background: #ffffff;
    color: #1f2937;
    font-size: 14px;
    outline: none;
    transition: 0.2s ease;
}


    .form-control-custom::placeholder {
        color: #a0a8b3;
    }


    .form-control-custom:focus {
        border-color: #1f5f9b;
        box-shadow: 0 0 0 3px rgba(31, 95, 155, 0.10);
    }


 ==========================================
   REMEMBER / FORGOT
========================================== 

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    margin-bottom: 23px;
    font-size: 13px;
}


.remember-me {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #667085;
    cursor: pointer;
}


    .remember-me input {
        width: 15px;
        height: 15px;
        cursor: pointer;
    }


.login-options a {
    color: #1f5f9b;
    font-weight: 600;
    text-decoration: none;
}


    .login-options a:hover {
        text-decoration: underline;
    }


 ==========================================
   LOGIN BUTTON
========================================== 

.login-button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 6px;
    background: #1f5f9b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}


    .login-button:hover {
        background: #174d80;
    }


    .login-button:active {
        transform: translateY(1px);
    }


 ==========================================
   REGISTER
========================================== 

.register-text {
    margin-top: 23px;
    text-align: center;
    font-size: 13px;
    color: #7b8794;
}


    .register-text a {
        margin-left: 4px;
        color: #1f5f9b;
        font-weight: 600;
        text-decoration: none;
    }


        .register-text a:hover {
            text-decoration: underline;
        }


 ==========================================
   DIVIDER
========================================== 

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
    color: #98a2b3;
    font-size: 11px;
    font-weight: 600;
}


    .divider::before,
    .divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e5e7eb;
    }


 ==========================================
   EXTERNAL LOGIN
========================================== 

.external-login {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


    .external-login form {
        width: 100%;
    }


.external-button {
    width: 100%;
    height: 44px;
    border: 1px solid #d7dde5;
    border-radius: 6px;
    background: #ffffff;
    color: #344054;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}


    .external-button:hover {
        background: #f8fafc;
        border-color: #b8c2cf;
    }


 ==========================================
   RESEND CONFIRMATION
========================================== 

.resend-confirmation {
    margin-top: 22px;
    text-align: center;
}


    .resend-confirmation a {
        color: #667085;
        font-size: 12px;
        text-decoration: none;
    }


        .resend-confirmation a:hover {
            color: #1f5f9b;
            text-decoration: underline;
        }


 ==========================================
   VALIDATION
========================================== 

.validation-summary {
    margin-bottom: 18px;
    padding: 10px 12px;
    border-radius: 5px;
    background: #fff1f2;
    color: #b42318;
    font-size: 13px;
}


.field-validation {
    display: block;
    margin-top: 5px;
    color: #d92d20;
    font-size: 12px;
}


 ==========================================
   MOBILE
========================================== 

@media (max-width: 500px) {

    .login-page {
        padding: 20px 15px;
    }

    .login-card {
        padding: 35px 25px;
        border-radius: 7px;
    }

    .school-name {
        font-size: 22px;
    }

    .login-header h1 {
        font-size: 25px;
    }
}


 ==========================================
   SMALL MOBILE
========================================== 

@media (max-width: 360px) {

    .login-page {
        padding: 10px;
    }

    .login-card {
        padding: 30px 20px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
*/