/*=============================
RESET
=============================*/

*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;

}

/*=============================
BODY
=============================*/

body{

height:100vh;

background:

url("img/entrada.png")

center
center
no-repeat;

background-size:cover;

display:flex;
justify-content:center;
align-items:center;

}

/*=============================
OSCURECER FONDO
=============================*/

.overlay{

width:100%;
height:100%;

background:rgba(0,0,0,.45);

display:flex;
justify-content:center;
align-items:center;

position:relative;

}

/*=============================
BOTON REGRESAR
=============================*/

.regresar{

position:absolute;

top:20px;
left:20px;

text-decoration:none;

color:white;

background:rgba(255,255,255,.15);

padding:12px 20px;

border-radius:50px;

backdrop-filter:blur(10px);

transition:.3s;

}

.regresar:hover{

background:#008cff;

}

/*=============================
LOGIN
=============================*/

.login{

width:90%;
max-width:420px;

padding:40px;

border-radius:20px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(12px);

box-shadow:

0 10px 30px rgba(0,0,0,.4);

color:white;

}

.login h1{

text-align:center;

margin-bottom:10px;

}

.login p{

text-align:center;

margin-bottom:30px;

opacity:.8;

}

/*=============================
GRUPOS
=============================*/

.grupo{

margin-bottom:20px;

}

.grupo label{

display:block;

margin-bottom:8px;

font-weight:bold;

}

.grupo input{

width:100%;

padding:14px;

border:none;

outline:none;

border-radius:10px;

font-size:16px;

}

/*=============================
PASSWORD
=============================*/

.password{

display:flex;

}

.password input{

flex:1;

border-radius:10px 0 0 10px;

}

.password button{

width:60px;

border:none;

cursor:pointer;

font-size:20px;

background:#006eff;

color:white;

border-radius:0 10px 10px 0;

transition:.3s;

}

.password button:hover{

background:#0052c7;

}

/*=============================
BOTON
=============================*/

#entrar{

width:100%;

padding:15px;

border:none;

border-radius:10px;

font-size:18px;

font-weight:bold;

cursor:not-allowed;

background:#7a7a7a;

color:white;

transition:.3s;

}

#entrar.activo{

background:linear-gradient(

90deg,

#00a2ff,

#006eff

);

cursor:pointer;

}

#entrar.activo:hover{

transform:scale(1.02);

}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:600px){

.login{

padding:25px;

}

.login h1{

font-size:28px;

}

}