/* =========================
   LOGIN PAGE
========================= */

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#1e293b,#3b82f6);
}

/* login card */

.login-container{
    background:white;
    width:380px;
    padding:40px;
    border-radius:10px;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.login-container h1{
    text-align:center;
    margin-bottom:10px;
    color:#1e293b;
}

.login-subtitle{
    text-align:center;
    font-size:14px;
    color:#6b7280;
    margin-bottom:25px;
}

/* form */

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
}

.form-group input{
    width:100%;
    padding:11px;
    border-radius:6px;
    border:1px solid #d1d5db;
    font-size:14px;
}

.form-group input:focus{
    outline:none;
    border-color:#3b82f6;
}

/* button */

.btn-login{
    width:100%;
    padding:12px;
    border:none;
    border-radius:6px;
    background:#3b82f6;
    color:white;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.btn-login:hover{
    background:#2563eb;
}

/* footer */

.login-footer{
    margin-top:20px;
    text-align:center;
    font-size:13px;
    color:#6b7280;
}