/* ==========================================================
   ElimuKenyaHub V2
   LOGIN PAGE
========================================================== */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f7fb;
}

/* ==========================================
   PAGE
========================================== */

.login-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px 20px;

}

/* ==========================================
   CONTAINER
========================================== */

.login-container{

    width:100%;

    max-width:1200px;

    display:grid;

    grid-template-columns:1fr 1fr;

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

}

/* ==========================================
   LEFT SIDE
========================================== */

.login-left{

    background:linear-gradient(135deg,#0d6efd,#0056d2);

    color:#ffffff;

    padding:60px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.login-logo{

    width:120px;

    margin-bottom:30px;

}

.login-left h1{

    font-size:42px;

    margin-bottom:20px;

}

.subtitle{

    font-size:18px;

    line-height:1.7;

    opacity:.95;

    margin-bottom:35px;

}

.features{

    list-style:none;

}

.features li{

    margin-bottom:18px;

    font-size:17px;

}

/* ==========================================
   RIGHT SIDE
========================================== */

.login-right{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:60px;

}

.login-card{

    width:100%;

    max-width:450px;

}

.login-card h2{

    font-size:34px;

    color:#222;

    margin-bottom:10px;

}

.login-card p{

    color:#777;

    margin-bottom:35px;

}

/* ==========================================
   FORM
========================================== */

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#333;

}

.form-control{

    width:100%;

    padding:14px 18px;

    border:1px solid #d6d6d6;

    border-radius:10px;

    font-size:15px;

    transition:.3s;

}

.form-control:focus{

    border-color:#0d6efd;

    outline:none;

    box-shadow:0 0 0 4px rgba(13,110,253,.12);

}

/* ==========================================
   PASSWORD
========================================== */

.password-wrapper{

    position:relative;

}

.toggle-password{

    position:absolute;

    top:50%;

    right:15px;

    transform:translateY(-50%);

    border:none;

    background:none;

    cursor:pointer;

    font-size:18px;

}

/* ==========================================
   LOGIN OPTIONS
========================================== */

.login-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:28px;

    font-size:14px;

}

.login-options label{

    display:flex;

    align-items:center;

    gap:8px;

    cursor:pointer;

}

.login-options a{

    color:#0d6efd;

    text-decoration:none;

    font-weight:600;

}

.login-options a:hover{

    text-decoration:underline;

}

/* ==========================================
   BUTTON
========================================== */

.btn-login{

width:100%;

height:55px;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

border:none;

border-radius:10px;

background:#0d6efd;

color:#fff;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.btn-login:hover{

    background:#0056d2;

    transform:translateY(-2px);

}

/* ==========================================
   LINK
========================================== */

.login-link{

    text-align:center;

    margin-top:28px;

    color:#666;

}

.login-link a{

    color:#0d6efd;

    text-decoration:none;

    font-weight:700;

}

.login-link a:hover{

    text-decoration:underline;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

.login-container{

grid-template-columns:1fr;

}

.login-left{

display:none;

}

.login-right{

padding:40px 25px;

}

.login-card{

max-width:100%;

}

}