/* ==========================
   STRATOS LOGIN PAGE
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background:#0f172a;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.login-container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.login-box{
    width:450px;
    background:#1e293b;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.logo{
    width:140px;
    display:block;
    margin:0 auto 20px;
}

.login-box h2{
    color:#fff;
    text-align:center;
    margin-bottom:10px;
    font-size:30px;
}

.login-box p{
    color:#94a3b8;
    text-align:center;
    margin-bottom:30px;
}

.input-group{
    position:relative;
    margin-bottom:20px;
}

.input-group i{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#94a3b8;
}

.input-group input{
    width:100%;
    height:50px;
    border:none;
    outline:none;
    border-radius:10px;
    background:#334155;
    color:#fff;
    padding-left:45px;
    padding-right:45px;
    font-size:15px;
}

.input-group input::placeholder{
    color:#94a3b8;
}

#togglePassword{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#94a3b8;
}

.options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    font-size:14px;
}

.options label{
    color:#cbd5e1;
}

.options a{
    color:#3b82f6;
    text-decoration:none;
}

.options a:hover{
    text-decoration:underline;
}

.login-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    transition:all .3s ease;
}

.login-btn:hover{
    background:#1d4ed8;
     transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(37,99,235,.35);
}

@media(max-width:480px){

    .login-box{
        width:100%;
        padding:30px 20px;
    }

    .logo{
        width:140px;
    display:block;
    margin:0 auto 20px;
    }

    .login-box h2{
        font-size:24px;
    }

}

.error-message{
    background:#dc2626;
    color:#fff;
    padding:12px;
    border-radius:8px;
    text-align:center;
    margin-bottom:20px;
    font-size:14px;
}