
/* ================= HEADER LOGIN ================= */

header{
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* TODOS LOS LINKS IGUALES */
nav a{
    font-size:17px;
    font-weight:600;
    color: white !important;
    letter-spacing:1px;
}

/* HOVER UNIFORME */
nav a:hover{
    transform:scale(1.1);
    color:#2ecc71;
}



nav a.activo{
    border-bottom:2px solid #2ecc71;
}

/* CONTENEDOR */
.login-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding-top:100px;
}

/* CAJA */
.login-box{
    width:400px;

    backdrop-filter:blur(20px);
    background:rgba(255,255,255,0.15);

    border-radius:20px;
    padding:40px;

    text-align:center;
}

/* TITULO */
.login-box h2{
    margin-bottom:30px;
}

/* INPUTS */
.login-box input{
    width:100%;
    padding:15px;
    margin-bottom:20px;

    border:none;
    border-radius:15px;

    font-size:15px;
}

/* BOTÓN */
.login-box button{
    width:60%;
    padding:12px;

    border:none;
    border-radius:25px;

    background:#2ecc71;
    color:white;

    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.login-box button:hover{
    transform:scale(1.05);
}

/* TEXTO */
.registro-texto{
    margin-top:20px;
    font-size:14px;
}

.registro-texto a{
    color:white;
    font-weight:bold;
    text-decoration:underline;
}
