.formu{
	width: 100%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	background: var(--bgw);
	box-shadow: var(--shadow);
	border-radius: 10px;
	padding: 20px;
	margin: 40px auto;
}
h1{
	font-size: 25px;
	text-align: center;
	font-family: 'Tilt Warp';
	font-weight: normal;
	color: var(--colorsoft);
	border-bottom: 3px solid var(--color1);
	padding: 5 20px;
	width: fit-content;
	margin: 0 auto 10px auto;
}
label{
	color: var(--colorsoft);
	margin-top: 10px;
}
.contenedor{
	width: 100%;
	display: flex;
	border: 1px solid var(--bgdark);
	background: var(--input);
	border-radius: 6px;
	overflow: hidden;
}
.contenedor span{
	width: 40px;
	min-width: 40px;
	height: 40px;
	padding: 10px;
	background: var(--btnbg);
}
.contenedor span img{
	width: 20px;
	height: 20px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(91deg) brightness(107%) contrast(95%);
}
.contenedor input{
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	padding: 0 10px;
	border: none;
	outline: none;
	background: transparent;
}
.show_pp{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.show_pp img{
	width: 22px;
	height: 22px;
}
.buttons_box{
	display: flex;
	column-gap: 8px;
	flex-wrap: wrap;
	margin-top: 10px;
}
input[type="submit"]{
	padding: 0 10px;
	font-size: 15px;
	background: var(--bgw);
	color: var(--colortxt);
	border: none;
	margin-top: 10px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 8px;
	border: 1px solid var(--colorsoft);
	flex-grow: 1;
	transition: all 300ms ease-out;
	flex-basis: 40%;
}
input[type="submit"]:hover{
	background: var(--bgdark);
	cursor: pointer;
}
.log_google{
	padding: 0 10px;
	font-size: 15px;
	background: var(--bgw);
	border: 1px solid var(--colorsoft);
	color: var(--colortxt);
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	gap: 10px;
	border-radius: 8px;
	height: 44px;
	flex-grow: 1;
	transition: all 300ms ease-out;
	flex-basis: 40%;
}
.log_google:hover{
	background: var(--bgdark);
}
.log_google img{
	height: 20px;
	width: 20px;
}