
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;

background:linear-gradient(135deg,#4f46e5,#06b6d4);
}

.login-container{

width:100%;
max-width:380px;
padding:30px;

background:white;
border-radius:12px;

box-shadow:0 15px 40px rgba(0,0,0,0.2);

}
.alert-error{
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
	padding: 12px 14px;
	border-radius: 10px;
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: bold;
}
.logo{
text-align:center;
font-size:26px;
font-weight:bold;
margin-bottom:10px;
color:#01184b;
}

.logo img{
    width: 60%;
    height: 60%;
}

.subtitle{
text-align:center;
font-size:14px;
margin-bottom:25px;
color:#666;
}

.input-group{
margin-bottom:18px;
}

.input-group label{
display:block;
font-size:13px;
margin-bottom:6px;
font-weight:bold;
color:#333;
}

.input-group input{

width:100%;
padding:12px;

border-radius:8px;
border:1px solid #ddd;

font-size:14px;

}

.input-group input:focus{

outline:none;
border-color:#4f46e5;

}

.login-btn{

width:100%;
padding:12px;

border:none;
border-radius:8px;

background:#4f46e5;
color:white;

font-weight:bold;
font-size:15px;

cursor:pointer;

transition:0.3s;

}

.login-btn:hover{
background:#4338ca;
}

.extra{

margin-top:18px;
text-align:center;
font-size:14px;

}

.extra a{

color:#4f46e5;
text-decoration:none;
font-weight:bold;

}

.extra a:hover{
text-decoration:underline;
}
/*Boton de Whatsapp*/
.btn-wsp{
    position:fixed;
    width: 55px;
    height:55px;
    line-height: 55px;
    bottom:30px;
    right:30px;
    background:white;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
}
.btn-wsp:hover{
    background: #fff/*#20ba5a*/;
    color: white;
}
.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 30px;
    cursor: pointer;
    color: #555;
}
@media(max-width:500px){

    .login-container{

    margin:20px;
    padding:25px;

    }

}