/*.container {
	margin: 1em 2em;
}

.start-wrapper {
	margin: auto;
	width: 500px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.start__span {
	display: block;
	margin: auto;
	margin-bottom: 30px;
	width: 270px;
}

.start__img {
	display: block;
	margin: auto;
	width: 250px;
}

.input-wrapper {
	max-width: 500px;
	display: flex;
	flex-direction: column;
	margin: auto;
}

.start__input {
	margin-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	height: 40px;
	background-color: #f2f2f2;
	border: 1px solid #000;
	border-radius: 6px;
	font-size: 22px;
	color: #210000;
	outline: none;
}

.start__input::placeholder {
	font-size: 22px;
	color: #210000;
	text-align: center;
}

.button-enter {
	display: block;
	margin: auto;
	margin-top: 10px;
	width: 130px;
	height: 40px;
	background-color: #75b44d;
	border: none;
	border-radius: 4px;
	font-size: 22px;
	cursor: pointer;
	transition: 0.5s;
}*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
/* Scroll Bar */

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-track-piece {
	background-color: transparent;
	-webkit-border-radius: 5px;
}
::-webkit-scrollbar-thumb:vertical {
	height: 10px;
	background-color: #f2f2f2;
	-webkit-border-radius: 5px;
}
::-webkit-scrollbar-thumb:horizontal {
	width: 10px;
	background-color: #f2f2f2;
	-webkit-border-radius: 5px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	width: 100%;
	overflow: hidden;
}
body {
	background: #fff;
	margin: 0;
	padding: 0;
	position: relative;
	font: 400 16px 'Montserrat', sans-serif;
	color: #000;
	overflow: hidden;
	min-height: 100%;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
input, button, select, textarea {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	font-family: 'Montserrat', sans-serif;
}
button {
	cursor: pointer;
	transition: 300ms;
}
table {
	border-collapse: collapse;
	width: 100%;
}
img {
	max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
	cursor: default;
	line-height: 1;
	margin-bottom: 0;
	font-weight: 700;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.auth-wrapper {
	width: 100%;
	height: 100vh;
}
.auth-row {
	height: 100%;
}
.auth-col {
	width: 50%;
	height: 100%;
}
.auth-image {
	height: 100%;
}
.auth-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.auth-in {
	padding: 30px 30px 100px 30px;
	overflow: auto;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100%;
}
.auth-cont {
	width: 500px;
	max-width: 100%;
}
.auth-logo {
	margin-bottom: 180px;
}
.auth-logo > img {
	display: block;
	width: 300px;
	margin-bottom: 15px;
}
.auth-logo > span {
	font-size: 18px;
	display: block;
	opacity: 0.5;
}
.auth-label {
	margin-bottom: 25px;
}
.auth-label:last-child {
	margin-bottom: 0;
}
.auth-labels {
	margin-bottom: 100px;
}
.auth-label {
	position: relative;
}
.auth-eye {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	cursor: pointer;
	opacity: 0.8;
}
.auth-eye > svg {
	width: 30px;
	height: 30px;
}
.auth-label > input {
	background: transparent;
	display: block;
	width: 100%;
	border-bottom: 1px solid #dcdcdc;
	padding: 0 50px 0 20px;
	font-size: 18px;
	font-weight: 500;
	height: 65px;
	transition: 300ms;
}
.auth-label > input:focus {
	border-color: #000;
}
.auth-label > input::placeholder {
	transition: 300ms;
}
.auth-label > input:focus::placeholder {
	font-size: 0;
}
.auth-btn {
	background: linear-gradient(180.00deg, rgb(65, 202, 0),rgb(46, 143, 0) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 45px;
	color: #fff;
	transition: 300ms;
	text-align: center;
	text-decoration: none!important;
	font-size: 20px;
	font-weight: 500;
	max-width: 100%;
	border-radius: 50px;
	/*border: 1px solid transparent;*/
	min-width: 203px;
}
.auth-btn:hover {
	background: linear-gradient(0deg, rgb(46, 143, 0), rgb(43 135 0) 100%);
	transition: 200ms;
}
.auth-btn:active {
	background: linear-gradient(0deg, rgb(46, 143, 0), rgb(43 135 0) 100%);
	box-shadow: 0 3px 0 #1B5400;
	transition: 200ms;
}
.auth-copy {
	font-size: 18px;
	opacity: 0.5;
	position: absolute;
	bottom: 30px;
	left: 50px;
}
@media(max-width: 1500px) {
	.auth-copy {
		position: static;
		margin-top: 70px;
	}
	.auth-logo {
		margin-bottom: 80px;
	}
	.auth-logo > img {
		width: 200px;
	}
	.auth-btn {
		padding: 15px 28px;
	}
	.auth-labels {
		margin-bottom: 30px;
	}
}
@media(max-width: 991px) {
	.auth-col-2 {
		display: none;
	}
	.auth-col {
		width: 100%;
	}
	.auth-in {
		align-items: flex-start;
	}
	.auth-logo {
		margin-bottom: 40px;
	}
	.auth-logo > img {
		width: 150px;
	}
	.auth-btn {
		padding: 15px 28px;
		font-size: 16px;
	}
	.auth-labels {
		margin-bottom: 20px;
	}
	.auth-logo > span {
		font-size: 16px;
	}
	.auth-copy {
		font-size: 13px;
	}
}