/* GLOBAL */
body{
margin:0;
font-family:Segoe UI, Arial;
background:linear-gradient(135deg,#0176d3,#005fb2);
height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

/* LOGIN CARD */
.login-container{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.2);
width:100%;
max-width:380px;
}

.logo{
text-align:center;
font-size:22px;
font-weight:bold;
color:#0176d3;
margin-bottom:20px;
}

h2{
text-align:center;
margin-bottom:25px;
}

/* FORM */
.form-group{
margin-bottom:18px;
}

label{
font-size:13px;
font-weight:bold;
display:block;
margin-bottom:5px;
}

input{
width:100%;
padding:12px;
border-radius:6px;
border:1px solid #ccc;
font-size:14px;
}

input:focus{
outline:none;
border:1px solid #0176d3;
}

/* PASSWORD */

.password-wrapper{
position:relative;
}

.show-pass{
position:absolute;
right:10px;
top:10px;
cursor:pointer;
font-size:13px;
color:#0176d3;
}

/* BUTTON */

button{
width:100%;
padding:12px;
background:#0176d3;
border:none;
color:white;
font-size:16px;
border-radius:6px;
cursor:pointer;
margin-top:10px;
}

button:hover{
background:#005fb2;
}

/* EXTRA LINKS */

.links{
margin-top:15px;
text-align:center;
font-size:13px;
}

.links a{
color:#0176d3;
text-decoration:none;
}

/* ERROR */
.error{
color:red;
font-size:12px;
display:none;
margin-top:5px;
}

/* RESPONSIVE */

@media(max-width:480px){

.login-container{
margin:20px;
padding:30px;
}

}