.start-panel {
	width: 100%;
	min-height: 100vh;
	background-color: #fff;
	background-image: url('../img/login-backdrop.png');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 15vw 30vh;
	display: grid;
	grid-template-columns: 400px 1fr;
	align-items: center;
	justify-content: center;
	padding-left: 10vw;
}

@media (max-width: 1200px) {
	.start-panel {
		background-size: 100vw 100vh;
		grid-template-columns: minmax(200px, 800px);
		padding: 0;
	}
}

.start-panel-image {
	height: 100%;
	background-image: url('../img/login-bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center left;
}

@media (max-width: 1200px) {
	.start-panel-image {
		display: none;
	}
}

.start-panel-box {
	width: 100%;
	padding: 15px;
}

@media (max-width: 1200px) {
	.start-panel-box-logo {
		text-align: center;
	}
}

.start-panel-box-logo img {
	width: 50%;
	height: auto;
	cursor: pointer;
}

.start-panel-box-content h1 {
	padding: 0;
	margin: 4rem 0 20px 0;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.6;
	color: #003c71;
}

.start-panel-box-content label {
	margin: 0 0 10px 0;
	display: block;
	cursor: text;
}

.start-panel-box-content fieldset {
	border: 1px solid #00dbb2;
	border-radius: 4px;
	background-color: #fff;
}

.start-panel-box-content fieldset legend {
	width: initial;
	margin: 0 10px;
	padding: 2px;
	font-size: 12px;
	color: #003c71;
	font-weight: 400;
	border: none;
}

.start-panel-box-content fieldset input {
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: #003c71 !important;
	filter: none;
	border: none;
	outline: none;
	padding: 0 0 12px 12px;
	border-radius: 4px;
}

.start-panel-box-content fieldset input,
.start-panel-box-content fieldset input::placeholder {
	font-family: Roboto;
	font-size: 16px;
	font-weight: normal;
	color: #003c71;
}

.start-panel-box-content fieldset input:-webkit-autofill,
.start-panel-box-content fieldset input:-webkit-autofill:hover,
.start-panel-box-content fieldset input:-webkit-autofill:focus,
.start-panel-box-content fieldset input:-webkit-autofill::first-line {
	font-family: Roboto;
	font-size: 16px;
	font-weight: normal;
	box-shadow: 0 0 0 100px #fff inset;
	color: #003c71;
	-webkit-text-fill-color: #003c71;
	-webkit-box-shadow: 0 0 0 100px #fff inset;
}

.start-panel-box-content__actions {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.start-panel-box-content__actions label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	margin: 0;
	user-select: none;
}

.start-panel-box-content__actions label input[type='checkbox'] {
	margin: 0 5px 0 0;
}

.start-panel-box-content button {
	width: 100%;
	margin: 25px 0 40px 0;
	padding: 16px;
	background-color: #00dbb2;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	outline: none;
	user-select: none;
}

.start-panel-box-content button:hover {
	background-color: #00a889;
}

.start-panel-box-content button i {
	margin-left: 10px;
}

.start-panel-box-content a {
	text-decoration: none;
	color: #757575;
}

.start-panel-box-footer {
	color: #757575;
	font-size: 14px;
}

.start-panel-box-footer a {
	text-decoration: none;
	color: #003c71;
}

.start-panel-box-footer img {
	width: 150px;
	height: auto;
}
