@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	color: #000000;
	font-size: 14px;
	line-height: 1.2;
  	font-family: "Roboto Condensed", sans-serif;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	min-height: 100%;
	min-width: 320px;
}
h1, h2, h3, h4, h5, h6{
	margin: 0 0 30px 0;
	font-weight: 700;
	color: #040404;
	line-height: 1.2;
}
p {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	line-height: normal;
	margin: 0 0 25px 0;
}
p a{
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #fff;
}
img{
	display: block;
	max-width: 100%;
}
a {
	outline: none;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
/*== buttons
---------------------------------*/
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
	box-shadow: none;
	font-family: inherit;
}
button:hover , button:focus , button:active{
	outline: none;
	text-decoration: none;
}
/*== inputs
---------------------------------*/
input{
	outline: none;
	border: none;
}

textarea{
	height: 80px;
	outline: none;
}
.input:not(:last-child){
	margin-bottom: 12px;
}
.input__text{
  font-family: "Roboto Condensed", sans-serif;
	border: none;
	width: 100%;
	height: 42px;
	border-radius: 6px;
	padding: 0 12px;
	font-weight: 400;
	font-size: 14px;
	line-height:16px;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: #14273f;
}
.input__text::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 14px;
	line-height:16px;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: #727272;
}
.input__text:-moz-placeholder{
	font-weight: 400;
	font-size: 14px;
	line-height:16px;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: #727272;
}
.input.error .input__text{
	border-color: #ff5d5d;
	/*background-image: url("../img/att.svg");*/
	background-position: right 10px center;
	background-repeat: no-repeat;
}
.error__text{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: #ff5d5d;
	margin-top: 6px;
}
textarea{
	height: 80px;
	outline: none;
	resize: none;
}
.b-textarea{
  	font-family: "Roboto Condensed", sans-serif;
	border: none;
	width: 100%;
	height: 133px;
	padding: 15px 12px 11px 12px;
	border-radius: 6px;
	font-weight: 400;
	font-size: 14px;
	line-height:16px;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: #14273f;
}
.b-textarea::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 14px;
	line-height:16px;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: #727272;
}
.b-textarea:-moz-placeholder{
	font-weight: 400;
	font-size: 14px;
	line-height:16px;
	letter-spacing: -0.01em;
	text-transform: capitalize;
	color: #727272;
}

/* End Total css ====*/
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.wrapper{
	position: relative;
	overflow: hidden;
}
.b-container{
	position: relative;
	background: linear-gradient(270deg, #acffe6 0%, #ddd 70.67%);
	min-height: 100vh;
	overflow: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: 0.7s;
	padding: 0 30px;
}
.logo{
	margin-bottom: 343px;
	transition: 0.3s;
}
.logo img{
	margin: 0 auto 0;
}
.block{
	padding: 30px 0;
}
.block__wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 80px;
	transition: 0.3s;
}
.block__link{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #919191;
}
.block__link a{
	text-transform: lowercase;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #14273f;
	transition: 0.2s;
}
.block__btn{
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: capitalize;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-align: center;
	color: #14273f;
	transition: 0.2s;
}
.block__btn:hover , .block__link a:hover{
	color: #00a2a2;
	text-decoration: none;
}

.b-container_last{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateX(100%);
	opacity: 0;
	visibility: hidden;
	transition: 0.4s;
	display: block;
}
.b-container_last.active{
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}
#block1.active{
	opacity: 0;
	visibility: hidden;
}
.b-container_last .logo{
	width: 155px;
	margin: 0 0 128px 0;
}
.b-container_last .block{
	width: 100%;
	max-width: 930px;
	margin: 0 auto 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	min-height: 100vh;
}
.block__form{
	width: 100%;
	max-width: 362px;
}
.block__form-title{
	font-weight: 900;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: #14273f;
	margin-bottom: 13px;
}
.block__form-btn{
	font-family: "Roboto Condensed", sans-serif;
	border-radius: 6px;
	width: 100%;
	height: 50px;
	background: #00479e;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	text-transform: capitalize;
	text-align: center;
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}
.block__form-btn:hover{
	background: #00a2a2;
}
.block__form-text{
	font-weight: 500;
	font-size: 14px;
	line-height: 42px;
	letter-spacing: -0.01em;
	text-transform: lowercase;
	color: #919191;
	margin-top: 12px;
}
.block__form-text a{
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #14273f;
	transition: 0.3s;
}
.block__form-text a:hover{
	color: #00a2a2;
	text-decoration: none;
}




@media (max-width: 767px) {
	.logo{
		margin-bottom: 150px;
	}
	.block__wrap{
		flex-direction: column;
		gap: 30px 0;
	}

	.b-container_last .logo{
		margin-bottom: 30px;
	}
}