@font-face {
	font-family: 'Gilroy-Light';
	src: url(fonts/Gilroy-Light.ttf);
}

/* Жирный */
@font-face {
	font-family: 'Gilroy-Medium';
	src: url(fonts/Gilroy-Medium.ttf);
}

@font-face {
	font-family: 'Gilroy-Bold';
	src: url(fonts/Gilroy-Bold.ttf);
}

@font-face {
	font-family: 'Gilroy-Semibold';
	src: url(fonts/Gilroy-Semibold.ttf);
}

@font-face {
	font-family: 'Gilroy-Regular';
	src: url(fonts/Gilroy-Regular.ttf);
}

html,
body {
	background: linear-gradient(45deg, rgb(172, 211, 242) 0%, rgb(227, 241, 255) 26%, rgb(244, 246, 248) 70%, rgb(211, 228, 244) 100%);
	display: flex;
	justify-content: start;
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
	min-width: fit-content;
	font-family: "Gilroy-Regular";
	color: #4D4D4D;
}


.content {
	width: 95%;
	height: 100%;
	text-align: center;
}

.authform {
	width: 30%;
	height: 30%;
	min-width: 380px;
	min-height: 380px;
	background-color: #2C8FDB;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10%;
	border-radius: 7px;
	display: grid;
	overflow: hidden;
}

.logo1 img {
	width: 200px;
}

.logo1 {
	text-align: left;
	padding-top: 4px;
	padding-bottom: 20px;

}

.wrapper {
	padding: 25px;
	height: 100%;
}

.authform .input_text {

	margin-top: 20px;
}

.authform .bottom {
	background: #fff;
	width: 100%;
	padding-top: 15px;
	text-align: right;
}

.authform .bottom a {
	color: #CDCDCD;
	padding-right: 25px;
	font-size: 12px;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.event .d1 {
	width: 49%;
	display: inline-flex;
}

.event .d2 {
	width: 49%;
	display: inline-block;
	text-align: right;
}

.event {
	margin-top: 40px;
	text-align: right;
	color: #fff;
	font-size: 10px;
}

/*=====================================================================*/
/*button*/
button {
	border-radius: 10px;
	height: 40px;
	border: none;
	color: white;
	padding: 1px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 15px;
	cursor: pointer;
	padding-left: 30px;
}

.orange {
	background: #F1A257;
}

.orange:hover {
	background: #D6873A;
}

.indoor {
	height: 15px;
	padding-left: 20px;
	background: url("/img/indoor.svg") no-repeat
}

/*=====================================================================*/
/*text*/
.input_text {
	background: #fff;
	border-radius: 7px;
	padding: 10px;
	border: 1px solid #fff;
}

.input_text input {
	width: 100%;
	border: none;
	outline: none;
	font-size: 12px;
}

/*text*/
/*=====================================================================*/

.error {
	border: 1px solid red;
}


@media screen and (max-width: 768px) {
	.authform {
		width: 100%;
		height: 100%;
		border-radius: 0;
		margin-top: 0;
	}

	.wrapper {
		padding-right: 36px;
		margin-top: 30%;
	}

	button {
		font-size: 12px;
		padding-left: 22px;
	}

	.authform .bottom {

		height: 40px;
		position: fixed;
		bottom: 0px;
	}
}