*,*::before,*::after {
	box-sizing: border-box;
}

:root {
	--arios-dark-blue: #12375A;
	--arios-light-blue: #1E8AA5;
}

body {
	background: #12375A;
	color: white;
	margin: 0;
	padding: 0;
	font-family: 'sofia-pro', Helvetica, Arial, sans-serif;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1;
}

p {
	margin: 0;
}

h1 {
	font-size: 1em;
	line-height: 0.5;
	margin: 0;
	padding: 0;
}

.content {
	text-align: center;
	height: calc(100svh - 70px);
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	padding: 0 clamp(20px, 4vw, 50px);
}

.logo {
	margin: 0 auto;
	width: 100%;
}

.logo img {
	width: 230px;
	height: auto;
}

.login {
	width: 100%;
	max-width: 415px;
	margin: 45px auto;
	display: flex;
	align-items: center;
	border: 1px solid var(--arios-light-blue);
}

.login-label {
	text-transform: uppercase;
	padding: 12px 16px 14px 16px;
	border-right: 1px solid var(--arios-light-blue);
}

.login-field {
	padding-left: 10px;
	height: 100%;
}

input,
label,
select,
button,
textarea
{
	margin:0;
	height: 100%;
	border:0;
	padding:8px 2px;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	background:none;
	line-height:1;
	font-size: 14px;
	color: white;
	font-family: inherit;
	text-transform: uppercase;
	letter-spacing: 2px;
}

input:focus {
	outline:0;
}

@media(min-width: 600px) {
	input,
	label,
	select,
	button,
	textarea
	{
		min-width: 250px;
	}
}

@media(max-width: 599px) {
	input,
	label,
	select,
	button,
	textarea
	{
		font-size: 16px;
	}
}


.contact {
	width: 100%;
	color: var(--arios-light-blue);
	margin-top: 60px;
}

.contact p {
	font-size: 16px;
	letter-spacing: 3px;
}

.contact a {
	text-decoration: none;
	color: inherit;
}

.contact a:hover {
	text-decoration: underline;
}

footer {
	height: 50px;
	padding: 0 clamp(20px, 4vw, 50px);
}

footer .footer-content {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--arios-light-blue);
	padding: clamp(15px, 2vw, 20px) 0;
	text-transform: uppercase;
}