*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Roboto', sans-serif;
}

body{
    height:100vh;
    background:linear-gradient(135deg,#1f3c88,#39a0ed);
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-container{
    width:380px;
    background:#ffffff;
    padding:40px 35px;
    border-radius:12px;
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
    text-align:center;
}

.logo{
    width:80px;
    margin-bottom:15px;
}

.login-container h2{
    margin-bottom:10px;
    color:#1f3c88;
    font-weight:600;
}

.login-container p{
    font-size:14px;
    color:#555;
    margin-bottom:25px;
}

.form-group{
    text-align:left;
    margin-bottom:18px;
}

.form-group label{
    font-size:13px;
    color:#333;
    font-weight:500;
}

.form-group input{
    width:100%;
    padding:10px;
    margin-top:5px;
    border-radius:6px;
    border:1px solid #ccc;
    font-size:14px;
}

.form-group input:focus{
    outline:none;
    border-color:#1f3c88;
}

.btn-login{
    width:100%;
    padding:12px;
    border:none;
    background:#1f3c88;
    color:white;
    font-size:15px;
    font-weight:500;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.btn-login:hover{
    background:#163172;
}

.footer{
    margin-top:20px;
    font-size:12px;
    color:#888;
}

