@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

body{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	min-height: 100vh;
	background-image: url("../Img/fondo.jpg");
	background-size: cover;
	background-position: center;
}

.login{
    grid-template-columns: 1fr;
	box-sizing: border-box;
	transition: all 2s ease;
	align-items: center;
	width: 420px;
	height: 86%;
	background: #1f393bb0;
	border: 3px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(20px);
	box-shadow: 0 0 10px rgb(0, 0, 0, .2);
	color: #fff;
	border-radius: 10px;
	padding: 5px 30px;
}

.login h1{
    font-size: 36px;
	text-align: center;
	margin-bottom: 0;
    color: #fff;
    font-weight: 600;
}

.label-login{
    display: block;
	font-weight: 700;
	padding: 1px;
    font-size: 18px;
    color: #fff;
    margin-top: 18px;
    cursor: pointer;
}

.icons_login{
    text-align: center;
    margin-bottom: 0;
    padding: 10px;
}

.icons_login i{
    text-align: center;
    padding: 4% 5%;
    margin: 5%;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    font-size: 30px;
    transition: background-color .3s ease all;
}

.icons_login i:hover{
    background-color: #fff;
    color: #333;
}

.login p{
    text-align: center;
    color: #fff;
    padding: 10px;
    margin-bottom: 0;
    font-weight: 600;
}

.formulario_login .contenedor_login{
    margin: 0 4% 0 4%;
    max-width: 100%;

    max-height: 90%;
}

.formulario_login .introducir_login{
    text-align: center;
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 0 1% 0;
}

.introducir_login input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 3px solid  rgba(207, 207, 207, 0.781);
    box-shadow: 0 0 10px rgb(255, 255, 255, .3);
	border-radius: 40px ;
	font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px ;
}

.introducir_login input::placeholder{
    color: #fff;
    font-weight: 500;
}

.introducir_login i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
}

.recordar_login input{
    margin-right: 7px;
}

.formulario_login .recuerdame_login{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    color: #fff;
    font-weight: 500;
    margin: 12px 11px
}

.recuerdame_login a{
    color: #fff;
    text-decoration: none;
}

.recuerdame_login a:hover{
    text-decoration: underline;
}

.boton_login{
    display: grid;
    grid-template-columns: 1;
    text-align: center;
    align-items: center;
    align-self: center;
    margin: 10px 10% -10px 10%;
	width: 80%;
	height: 45px;
	background: #fff;
	border: solid 3px #fff;
	outline: none;
	border-radius: 40px;
	box-shadow: 0 0 10px rgb(0, 0, 0, .1);
	cursor: pointer;
	font-size: 18px;
	color: #333;
	font-weight: 600;
	transition: background-color .3s ease all;
}

.boton_login:hover{
    background-color: #333;
    font-weight: 600;
    border: none;
    color: #fff;
}

.login .registro_login {
    font-size: 14.5px;
	text-align: center;
    display: flex;
}

.registro_login p{
    color: #fff;
    font-size: 16px;
    text-align: center;
    align-items: center;
    margin-top: 8px;
    display: flex;
}

.registro_login p button{
    color: #333;
	font-size: 18px;
	margin: 6px 0 3px 20px;
	height: 44px;
    width: 128px;
	outline: none;
    border: solid 3px #fff;
	box-shadow: 0 2px 5px rgb(0, 0, 0, .1);
	border-radius: 40px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color .3s ease all;
}

.registro_login p button:hover{
	background-color: #333;
	border: none;
	color: #fff;
    font-weight: 600;
}

/* PERSONALIZACION DE ALERTAS DEL LOGIN */

.formulario_login div .alerta-login{
	font-weight: 500;
	position: relative;
	border-radius: 7px;
	margin-bottom: 10px;
	margin-left: 5%;
	align-items: center;
	text-align: left;
	font-size: .8rem;
	color: #fff;
}

.formulario_login .error-login{
	border: solid 3px #fa2d2d;
	border-radius: 40px ;
}

.alerta-error{
    color: #fa2d2d;
}