/* =========================
RESET
========================= */

*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:Arial, Helvetica, sans-serif;
}


/* =========================
BODY LOGIN
========================= */

.login-body{
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
min-height:100vh;
}


/* =========================
CONTENEDOR
========================= */

.login-container{
width:100%;
display:flex;
justify-content:center;
padding:20px;
}


/* =========================
TARJETA LOGIN
========================= */

.login-card{
background:white;
padding:40px 35px;
border-radius:12px;
width:100%;
max-width:380px;
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}


/* =========================
LOGO
========================= */

.login-logo{
text-align:center;
font-size:70px;
color:#9dbb4b;
margin-bottom:10px;
}


/* =========================
TITULO
========================= */

.login-title{
text-align:center;
font-size:22px;
margin-bottom:5px;
}

.login-subtitle{
text-align:center;
color:#777;
margin-bottom:25px;
font-size:14px;
}


/* =========================
INPUT MATERIAL
========================= */

.group-material-login{
position:relative;
margin-bottom:25px;
}

.material-login-control{
width:100%;
border:none;
border-bottom:2px solid #ddd;
padding:10px 5px;
font-size:14px;
background:none;
outline:none;
}

.material-login-control:focus{
border-bottom:2px solid #9dbb4b;
}

.group-material-login label{
position:absolute;
top:10px;
left:5px;
font-size:14px;
color:#777;
pointer-events:none;
transition:0.3s;
}

.material-login-control:focus + .highlight-login + .bar-login + label,
.material-login-control:not(:placeholder-shown) + .highlight-login + .bar-login + label{
top:-12px;
font-size:12px;
color:#9dbb4b;
}


/* =========================
BOTON LOGIN
========================= */

.btn-login{
width:100%;
background:#9dbb4b;
border:none;
padding:12px;
border-radius:6px;
color:white;
font-size:15px;
cursor:pointer;
transition:0.2s;
display:flex;
align-items:center;
justify-content:center;
gap:6px;
}

.btn-login:hover{
background:#86a63c;
}

/* =========================
FONDO LOGIN
========================= */

.login-body{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
position:relative;
background:#f5f6fa;
overflow:hidden;
}
/* sello masónico tenue */

/* =========================
SELLO MASONICO RESPONSIVE
========================= */

.login-body::before{
content:"";
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:520px;
height:520px;
background-image:url("../assets/img/sello_masonico.png");
background-repeat:no-repeat;
background-position:center;
background-size:contain;
opacity:0.05;
pointer-events:none;
z-index:0;
}

.login-card{
position:relative;
z-index:1;
}

@media(max-width:1024px){

.login-body::before{
width:420px;
height:420px;
opacity:0.05;
}

}

@media(max-width:600px){

.login-body::before{
width:260px;
height:260px;
opacity:0.04;
}

}

/* =========================
TABLET
========================= */

@media(max-width:1024px){

.login-bg::before{
width:420px;
height:420px;
opacity:0.05;
}

}

/* =========================
MOVIL
========================= */

@media(max-width:600px){

.login-bg::before{
width:280px;
height:280px;
opacity:0.04;
}

}

/* =========================
MENSAJE FORM
========================= */

.msjFormSend{
margin-top:20px;
text-align:center;
}

.hidden{
display:none;
}

/* =========================
OPCIONES LOGIN
========================= */

.login-options{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
font-size:13px;
}

.remember{
display:flex;
align-items:center;
gap:6px;
color:#555;
}

.forgot{
text-decoration:none;
color:#9dbb4b;
}

.forgot:hover{
text-decoration:underline;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:500px){

.login-card{
padding:30px 25px;
}

.login-logo{
font-size:55px;
}

.login-title{
font-size:20px;
}

}