html {
	background: black;
	font-size: 16px;
}

html, body {
	height: 100%;
	font-family: Helvetica;
	font-style: normal;
	font-weight: normal;

}

*:focus {
	outline: none;
}

.container {
	height: 100vh;
}

body .content {
	background: white;
	margin: auto;
	color: white;
	position: relative;
	display: grid;
}

.language-selector {
	position: absolute;
	right: 16px;
	top: 24px;
	font-size: 1rem;
	line-height: 24px;
	list-style-type: none;

	/* Text Normal */

	font-family: Helvetica;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	/* identical to box height, or 150% */

	cursor: pointer;
	display: flex;
	align-items: center;
	text-transform: lowercase;
}

.language-selector li {
	margin: 0 10px;
	color: #7696B2;

}

.language-selector li.active {
	color: #00AEEF;
}

.logo {
	margin: 2em 0;
}

.logo img {
	width: 30%;
	height: auto;
}

.text-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0 16px;
}

.warning-message {
	background: #FF4B55;
	padding: 10px 20px 10px 40px;
	border-radius: 3px;
	font-size: .75rem;
	line-height: 1rem;
	position: relative;
	max-width: 600px;
}

.warning-message::before {
	font: var(--fa-font-solid);
	content: "\f06a";
	font-size: 1.05rem;
	position: absolute;
	top: 25px;
	left: 15px;
}

.phone-number {
	line-height: 24px;
	display: flex;
	grid-gap: 10px;
}

.phone-number p {
	margin: 0;
}

.phone-number a {
	color: #fff;
	text-decoration: none;
}

.phone-number i:before {
	color: #00AEEF;
}

.text-content .phone-number {
	display: none;
	margin-top: auto;
	margin-bottom: 20px;
}

.text-content h1 {
	margin: 0;
}

.link.back {
	color: #00AEEF;
}

form input {
	box-sizing: border-box;
	margin: 5px 0;
	width: 100%;
	border-radius: 2px;
	font-size: 1.3rem;
	padding: 4px 5px;
	background: #FFFFFF;
	border: 1px solid #CCC;
	box-sizing: border-box;
	border-radius: 4px;
}

form input:focus{
	border: 1px solid #00AEEF;
}

form input[type="submit"] {
	padding: 0.5rem 0;
	font-size: 1rem;
	background: #00AEEF;
	color: white;
	border: 1px solid transparent;
}

.form-group label {
	color: #7696B2;
	font-size: .7rem;
}

.pending-login {
	box-sizing: border-box;
	text-align: center;
	color: #003767;
	background-color: white;
	box-sizing: border-box;
	padding: 20px 30px 10px;
	border-radius: 2px;
	font-size: .8rem;
	box-shadow: 0px 4px 12px rgba(63, 73, 83, 0.12);
	border-radius: 12px;
	font-weight: 600;
	line-height: 24px;
}

@media screen and (max-width: 1023px) {
	body .content {
		background-image: url('./../../../images/responsive/login/login-img.png');
		background-position: center center;
		background-size: cover;
		grid-template-rows: auto 1fr;
		grid-auto-flow:row;
		min-height: 100vh;
	}

	.header .phone-number {
		display: none
	}

	.text-content .phone-number {
		display: flex;
	}

	body .text-content {
		margin: 0 10%;
	}

	.form-group label {
		color: #fff;
	}

	.language-selector li:not(.active) {
		display: none;
	}
}

@media screen and (min-width: 1024px) {
	body .header {
		background-image: url('./../../../images/responsive/login/login-img.png');
		background-position: center center;
		background-size: cover;
	}

	.header .phone-number {
		position: absolute;
		bottom: 60px;
		left: 100px;
	}

	.language-selector {
		color: #00AEEF;
	}

	body .title {
		color: #003767;
	}

	body .content {
		grid-template-columns: 40% auto;
		height: 100vh;
	}

	body .text-content {
		margin: auto;
		max-width: 400px;
	}
}
