/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f7fc;
}

/* ==========================
   LOGIN
========================== */

.login-container{
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.login-box{
    width:420px;
    background:#ffffff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.logo{
    text-align:center;
    margin-bottom:20px;
}

.logo img{
    width:150px;
}

.login-box h2{
    text-align:center;
    color:#1d4ed8;
    margin-bottom:8px;
}

.login-box p{
    text-align:center;
    color:#777;
    margin-bottom:30px;
}

/* ==========================
   FORM
========================== */

.input-group{
    margin-bottom:20px;
}

.input-group label{
    display:block;
    margin-bottom:8px;
    font-weight:500;
}

.input-field{
    display:flex;
    align-items:center;
    border:1px solid #dcdcdc;
    border-radius:10px;
    overflow:hidden;
    transition:.3s;
}

.input-field:focus-within{
    border-color:#2563eb;
}

.input-field i{
    width:50px;
    text-align:center;
    color:#2563eb;
}

.input-field input{
    width:100%;
    padding:14px;
    border:none;
    outline:none;
    font-size:15px;
}

/* ==========================
   BUTTON
========================== */

.btn-login{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#ffffff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-login:hover{
    background:#1d4ed8;
}

.btn-login i{
    margin-right:8px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:480px){

    .login-box{
        width:90%;
        padding:30px;
    }

}