body {
	background: #fbf6e5;
}

.alert-container {
	width: 100%;
	max-width: 800px;
}

.logo {
	width: 100%;
	max-width: 165px;
	margin-top: 30px;
}

.form-block {
	display: block;

	width: 100%;
	max-width: 520px;
	height: 320px;
	margin: 0 auto;
	padding: 36px 32px;

	text-align: center;

	border-radius: 5px;
	background-image: url("../../img/common/background.png");
	background-size: 520px 360px;
}

.form-content {
	position: relative;

	margin-bottom: 17px;
}
.form-content input {
	font-size: 20px;

	width: 100%;
	height: 60px;
	padding: 0 12px 0 70px;

	border: solid 2px #e1c667;
	border-radius: 5px;
	background-color: #fff;
}
.form-content input::-webkit-input-placeholder {
	color: #93a0a0;
}
.form-content input::-moz-placeholder {
	color: #93a0a0;
}
.form-content input:-ms-input-placeholder {
	color: #93a0a0;
}
.form-content input::-ms-input-placeholder {
	color: #93a0a0;
}
.form-content input::placeholder {
	color: #93a0a0;
}
.form-content input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #fff inset;
	        box-shadow: 0 0 0 1000px #fff inset;

	-webkit-text-fill-color: #000;
}

.icon-input-second {
	margin-bottom: 50px;
}

.icon-input-first::before,
.icon-input-second::before {
	position: absolute;
	top: 50%;
	left: 18px;

	content: "";
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	pointer-events: none;

	background-repeat: no-repeat;
	background-size: contain;
}

.icon-input-first::before {
	left: 18px;

	width: 26px;
	height: 25px;

	background-image: url("../../img/common/icon_1.svg");
}

.icon-input-second::before {
	left: 22px;

	width: 20px;
	height: 26px;

	background-image: url("../../img/common/icon_2.svg");
}

.btn-wrap {
	text-align: center;
}

.btn-login {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display:         flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	        justify-content: center;

	height: 60px;

	text-align: center;

	border: #272a29;
	background-color: #272a29;
}
.btn-login:hover {
	border: #272a29;
	background-color: #272a29;
}
.btn-login:active {
	border: #272a29;
	background-color: #272a29;
}
.btn-login:focus {
	border: #272a29;
	background-color: #272a29;
}
.btn-login p {
	font-size: 24px;

	color: #fff;
}

.login-icon {
	display: block;

	width: 25px;
	height: 25px;
	margin: 0 8px 0 -20px;
}

.other-link-wrapper p {
	font-size: 21px;
}
.other-link-wrapper p small a {
	color: #119aff;
}
.other-link-wrapper p:first-of-type {
	margin-top: 20px;
}
