@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-size: cover;
	background-position: center;
}

.hide{
    position: absolute;
	transform: translateY(-1650px);
}

main{
    max-width: 800px;
	width: 90%;
	margin: auto;
    transition: all 2s ease;
	padding: 10px 40px 10px 40px;
    background: #1f393bb0;
	border: 3px solid rgb(255, 255, 255, .2);
	backdrop-filter: blur(20px);
	box-shadow: 0 0 10px rgb(0, 0, 0, .2);
    border-radius: 15px;
}

h1{
    color: #fff;
    text-align: center;
    align-items: center;
    padding: 10px;
}

.formulario_register {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contenedor_label {
	display: block;
	font-weight: 700;
	padding: 5px 0 0 0;
	cursor: pointer;
    color: #fff;
}

.label-register {
	display: block;
    color: #fff;
	font-weight: 700;
	padding: 10px;
	cursor: pointer;
    width: 330px;
}

.contenedor_introducir_input{
    position: relative;
}

.contenedor_input{  
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    border: 3px solid rgba(207, 207, 207, 0.781);
    box-shadow: 0 0 10px rgb(255, 255, 255, .2);
	border-radius: 25px ;
	font-size: 16px;
    color: #fff;
    padding: 12px 38px 12px 20px ;
    margin: 4px 10px 0 0;
    transition: .3s ease all;
}

.contenedor_input::placeholder{
    color: #fff;
    font-weight: 500;
}

.contenedor_input:focus{
    border: 3px solid #0075FF;
	outline: none;
	box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}

.contenedor_input_error{ 
    font-size: 15px;
    padding: 4px 0 0 10px;
	margin-bottom: 0;
	display: none;
    color: #fff;
}

.contenedor_input_error-activo{
    display: block;
}

.icons-register{
    position: absolute;
	right: 12px;
	bottom: 7px;
	z-index: 100;
	font-size: 22px;
    opacity: 0;
}

.checkbox-register{
    margin-right: 10px
}

.contenedor_terminos_register,
.contenedor_boton_register{
    grid-column: span 2;
}

.contenedor_boton_register{
    display: flex;
	flex-direction: column;
	align-items: center;
}

.boton_register{
	width: 40%;
	height: 45px;
	background: #fff;
	border: solid 3px #fff;
	outline: none;
	border-radius: 40px;
	box-shadow: 0 0 10px rgb(0, 0, 0, .1);
	font-size: 18px;
	color: #333;
	font-weight: 700;
	transition: .3s ease all;
}

.boton_register:hover{
    background-color: #333;
    font-weight: 500;
    border: none;
    color: #fff;
}

.contenedor_volver_register{
    display: flex;
    height: 80px;
    align-items: center;
    padding: 10px;
    flex-direction: row;
    margin: 2px 9% 2px 9%;
}

.contenedor_volver_register p{
    align-items: center;
    text-align: center;
    margin-bottom: 0px;
    padding: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.contenedor_volver_register .boton_volver_login{
    width: 40%;
	height: 45px;
	background: #fff;
	border: solid 3px #fff;
	outline: none;
	border-radius: 40px;
	box-shadow: 0 0 10px rgb(0, 0, 0, .1);
	font-size: 18px;
	color: #333;
	font-weight: 700;
	transition: background-color .3s ease ;
}

.boton_volver_login:hover{
    background-color: #333;
    font-weight: 500;
    border: none;
    color: #fff;
}

/* PERSONALIZACION DE ALERTAS DEL REGISTER */

.contenedor_register-error .contenedor_label{
	color: #fa2d2d;
}

.contenedor_register-error .icons-register{
    color: #fa2d2d;
    opacity: 1;
}

.contenedor_register-error .contenedor_input{
    border: 3px solid #fa2d2d;
    box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}

.contenedor_register-exito .icons-register{
    color: #43bb49;
    opacity: 1;
}