*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, Helvetica, sans-serif;
}

.login-page{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(135deg,#ffffff,#eaf4ff);
}

/* CONTENEDOR */

.login-container{
width:90%;
max-width:380px;
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
text-align:center;
border-top:6px solid #e53935;
}

/* LOGO */

.logo{
width:90px;
height:90px;
margin:auto;
margin-bottom:20px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
color:#888;
}

/* INPUTS */

.input-group{
position:relative;
margin-bottom:15px;
}

.input-group input{
width:100%;
padding:12px 40px;
border-radius:8px;
border:1px solid #ccc;
font-size:16px;
}

.input-group input:focus{
border-color:#1976d2;
outline:none;
box-shadow:0 0 5px rgba(25,118,210,0.3);
}

/* ICONOS */

.icon-left{
position:absolute;
left:12px;
top:50%;
transform:translateY(-50%);
color:#777;
font-size:18px;
}

.icon-right{
position:absolute;
right:12px;
top:50%;
transform:translateY(-50%);
cursor:pointer;
color:#777;
font-size:18px;
}

/* BOTON */

button{
width:100%;
padding:12px;
border:none;
border-radius:8px;
background:#e53935;
color:white;
font-size:16px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

button:hover{
background:#c62828;
}

/* WHATSAPP */

.forgot{
margin-top:15px;
font-size:14px;
}

.forgot a{
text-decoration:none;
color:#1976d2;
font-weight:bold;
}

.forgot a:hover{
text-decoration:underline;
}

/* RESPONSIVE */

@media (max-width:480px){

.login-container{
padding:25px;
}

.logo{
width:75px;
height:75px;
}

}