/* New login.php */
body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(
        135deg,
        #32da5c,
        #231bc0
    );
    font-family:'Segoe UI',sans-serif;
}

.login-card{
    width:100%;
    max-width:450px;
    background:white;
    border:none;
    border-radius:20px;
    box-shadow:
        0 15px 35px rgba(0,0,0,.15);
    overflow:hidden;
}

.card-header-custom{
    text-align:center;
    padding:30px;
    background:#f8f9fa;
}

.school-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#0d6efd;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:32px;
}

.system-title{
    margin-top:15px;
    font-weight:700;
}

.system-subtitle{
    color:#6c757d;
    font-size:14px;
}

.form-control{
    height:50px;
    border-radius:10px;
}

.btn-login{
    height:50px;
    border-radius:10px;
    font-weight:600;
}

.footer-text{
    font-size:13px;
    color:#6c757d;
}

.input-group-text{
    background:white;
}