﻿/* Окно логина */

.login-list{
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 12px;
}

.login-input{
	margin-bottom: 8px;
	padding: 8px 35px 8px 11px;
	display: block;
	width: 100%;
	border: 1px solid #e1e1e1;
	border-radius: 4px;
	background: white;
}

.password-div{
	position: relative;
	display: flex;
	align-items: center;
}

.password-input-eye{
	position: absolute;
	right: 12px;
	top: 0;
	height: 100%;
	width: 20px;
	z-index: 9;
	user-select: none;
	cursor: pointer;
	background-image: url('../img/closed-eye.png');
	background-position: center;
	background-repeat: no-repeat;
}

.password-input-eye:hover{
	background-image: url('../img/opened-eye.png');
}

.login-button{
	width: 100%;
	border-radius: 5px;
	margin-bottom: 8px;
	height: 48px;
}

.level-checkbox{
	display: flex;
	align-items: center;
}

.login-text{
	padding: 8px 0;
	text-align: center;
}

.login-link{
	color: #177DE5;
	border-bottom: 1px dashed #177DE5;
}

.checkbox-item{
	padding: 12px 0;
}

.level-checkbox{
	display: flex;
	align-items: center;
}

.wrong-password, .errorlist,.error-list{
	color: red;
	margin-bottom: 5px;
	margin-top: 5px;
	font-size: 10px;
	white-space: break-spaces;
}

/*Окно регистрации, там все классы те же, что у логина кроме этих*/

.blue-link{
	color: rgb(23,125,229);
	cursor: pointer;
}


.agree-checkbox{
	margin-right: 10px;
}

.agree-text{
	font-size: 10px;
}

.registration-text{
	padding: 8px 0;
	text-align: center;
	margin-top: -10px;
}

input.red-placeholder::placeholder{
	color: red;
}