.header {
	margin-top: 70px;
	color: rgba(31, 31, 31, 1);
	font-size: 35px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: 0%;
	text-align: center;
	
	.ico {
		padding-right: 15px;
		transform: translateY(-2.5px);
	}
}
.return-to-input-email-trigger {
	cursor: pointer;
}

.input.margin {
	margin-top: 26px;
}
.input {
	max-width: 310px;
	margin: 0px auto;
	
	.label {
		color: rgba(31, 31, 31, 1);
		font-size: clamp(16px, 1.2vw, 20px);
		font-weight: 500;
		line-height: 120%;
		letter-spacing: 0%;
		text-align: left;
		
	}
	input {
		width: 100%;
		outline: none;
		border: 1px solid rgba(31, 31, 31, 0.5);
		box-shadow: 0px 4px 15px 0px rgba(255, 255, 255, 0.15);
		height: 36px;
		padding: 0px 10px;
		
		font-size: 15px;
		font-weight: 500;
		line-height: 120%;
		letter-spacing: 0%;
		text-align: left;
		margin-top: 10px;
		transition: .1s;
	}
	.error-text {
		color: rgba(215, 23, 23, 1);
		margin-top: 5px;
		opacity: 0;
		transition: .1s;
	}
}
.input.error {
	
	input {
		border: 1px solid rgba(215, 23, 23, 0.5);
	}
	.error-text {
		opacity: 1;
	}
}

.btns {
	margin-top: 30px;
}

.send-auth-btn {
	padding: 8px 26px;
	box-sizing: border-box;
	border: 1px solid rgba(31, 31, 31, 1);
	background: rgba(31, 31, 31, 1);
	
	color: rgba(255, 255, 255, 1);
	font-size: 15px;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: 0%;
	text-align: center;
	width: 231px;
	margin: 0px auto;
	cursor: pointer;
	position: relative;
	height: 34px;
	
	.label {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		
		.text {
			transform: translateY(1px);
		}
	}
	
	.ico {
		padding-right: 10px;
	}
}
.open-tg-auth-form-trigger {
	margin-top: 10px;
}



@media (max-width: 770px) {
	.header {
		margin-top: 30px;
	}
	
}