.pass-field {
	position: relative;
	display: grid;
	grid-auto-flow: row;
	width: 60%;
	margin-bottom: 25px;
}

.pass-field .toggler {
	position: absolute;
	right: 40px;
	top: 71%;
	transform: translateY(-50%);
	cursor: pointer;
}

@media screen and (min-width: 768px) {
	.pass-field {
		grid-auto-flow: column;
		grid-template-columns: 3fr 6fr 20px;
	}
	.pass-field .toggler {
		top: 56%;
	}
}

@media only screen and (max-width: 1324px) {
	.pass-field {
		width: 100%;
	}
}

