.login-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.iti {
    width: 100%;
}

.login-card {
    overflow: hidden;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.submit-btn {
    min-height: 54px;
    font-size: 16px;
}

.loading-state {
    opacity: .6;
    pointer-events: none;
}

/* ---------- Header ---------- */

.academy-name {
    display: inline-block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: #212529;
    text-decoration: none;
    letter-spacing: -.5px;
    transition: color .25s ease;
}

.academy-name:hover {
    color: #0d6efd;
}

.login-title {
    margin: 12px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: #212529;
}

.login-subtitle {
    max-width: 340px;
    margin: 0 auto 2rem;
    color: #6c757d;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
}

/* ---------- Divider ---------- */

.login-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #999;
    font-size: .82rem;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.login-divider span {
    padding: 0 12px;
}

/* ---------- Rules ---------- */

.login-rules {
    margin: 0;
    text-align: center;
    color: #777;
    font-size: .82rem;
    line-height: 2;
}

.login-rules a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.login-rules a:hover {
    text-decoration: underline;
}

/* ---------- Mobile ---------- */

@media (max-width: 576px) {

    .login-card .card-body {
        padding: 1rem !important;
    }

    .academy-name {
        font-size: 26px;
    }

    .login-title {
        font-size: 21px;
    }

    .login-subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .submit-btn {
        font-size: 15px;
    }
}



.login-logo{
    display:flex;
    justify-content:center;
    margin-bottom:18px;
}

.login-logo img{

    width:72px;
    height:72px;

    object-fit:contain;

    transition:.25s ease;

}

.login-logo:hover img{

    transform:scale(1.05);

}