@charset "utf-8";

input[type="text"],
input[type="email"],
input[type="password"]{
	padding: .75em 1.5em;
	border-radius: .75em;
	background-color: var(--c_form_gray);
	width: 390px;
	max-width: 100%;
	box-sizing: border-box;
}
input[type="checkbox"]{
	width: 1.25em;
	height: 1.25em;
	border: 1px solid var(--c_primary_dark);
	border-radius: .25em;
}
input[type="checkbox"]:checked{
	background-color: var(--c_form_gray);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14.393 9.429'%3E%3Cpath d='M0.708 2.344L6.379 8.015L13.686 0.707' fill='none' stroke='%230f424d' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 81.25% auto;
}
label{
	cursor: pointer;
	display: inline-block;
}
::placeholder{
	color: var(--c_primary_dark);
}
@media screen and (max-width: 520px){
	input[type="text"],
	input[type="email"],
	input[type="password"]{
		width: 100%;
	}
}

/*--------------------------------------------------------------------*/

.input.password{
	position: relative;
}
.input.password .eye{
	width: 3em;
	height: 100%;
	border-left: 1px;
	position: absolute;
	background-image: url("../img/icons/eye.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 1em auto;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	cursor: pointer;
}
.input.password .eye._open{
	background-image: url("../img/icons/eye-close.svg");
}
.input.password .eye::before{
	content: "";
	display: block;
	width: 1px;
	height: 1em;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	background-color: #D1D1D1;
}
.input.password input[type="password"]{
	padding-right: 3em;
}