@font-face {
	font-family: 'Como';
	font-style: normal;
	font-weight: 400;
	src: url('/assets/fonts/Como/Como-SemiBold.woff2') format('woff2');
}

*, *:before, *:after {
	box-sizing: border-box;
	font-family: Como !important;
}
.fa,
.fa::before,
.fa::after,
.fas,
.fas::before,
.fas::after {
	font-family: 'Font Awesome 5 Pro' !important;
	font-weight: 900;
}

html {
	width: 100%;
	height: 100%;
	min-height: 600px;
}

body {
	text-align: center;
	margin: 0px;
	background-size: cover;
	background-position: 50% 50%;
	font-family: Como, sans-serif;
}

.steamLogo {
	position: fixed;
	left: 40px;
	top: 40px;
	width: 200px;
	max-width: 30%;
}

.loginWindowContent {
	width: 630px;
	right: 0;
	position: absolute;
	top: 0;
	height: 100%;
	padding: 80px 50px;
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 12px;
}

.input {
	border-radius: 4px;
	padding: 5px 12px;
	font-size: 16px;
	outline: none;
	width: 100%;
	border: none;
	line-height: 28px;
}

.btnLogin {
	margin-top: 130px;
	cursor: pointer;
	color: white;
	font-family: Como;
	font-size: 12px;
	border: 1px solid #007fd1;
	border-radius: 2px;
	padding: 0px 2px 2px 2px;
	text-align: center;
	box-shadow: 0px 0px 3px rgba(255,255,255,0.2), 2px 2px 2px rgba(0,0,0,0.2);
	background-color: #009bff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
}

.error {
    color:red;
}

.forgot-password {
    color:#ED6B43;
    text-decoration: none;
}

.forgot-password:visited {
    color:#ED6B43;
}
.forgot-password:hover {
    color:#ED6B43;
    text-decoration: underline;
}

.btnLogin {
	background-color: #ED6B43 !important;
	border-color: #ED6B43 !important;
}

#form-logo {
	max-width: 250px !important;
	max-height: 100px !important;
}

.login-form-wrapper {
	height: 100%;
	border-radius: 10px;
	background-color: #F6F6F6;
	padding: 70px 50px;
}

.login-inputs-wrapper {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	row-gap: 40px;
	align-items: center;
}

.login-input {
	position: relative;
	width: 100%;
}

.input-label {
	font-size: 14px;
	color: #68555E;
	position: absolute;
	left: 10px;
	top: 10px;
	transition-property: top;
	transition-duration: .15s;
	transition-timing-function: ease-in-out;
}

.login-input--focus .input-label {
	top: -22px;
}

.btn-reset-password {
	font-size: 12px;
	margin-top: 6px;
	align-self: flex-start;
}

.grid-login-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	align-items: center;
}

.btnLogin {
	width: 100%;
	font-size: 16px;
	height: 40px;
	border-radius: 6px;
}

.btnLogin:disabled {
	background-color: var(--secondary-70) !important;
	color: var(--btn-primary-disabled) !important;
	border-color: var(--secondary-70) !important;
	box-shadow: none;
}

.login-contact-list {
	display: flex;
	flex-direction: column;
	align-self: end;
	row-gap: 6px;
}

.tfa-form {
	margin-top: 200px;
}

@media (max-height: 1030px) {
	.login-form-wrapper {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

@media (max-height: 980px) {
	.loginWindowContent {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

@media (max-height: 920px) {
	.loginWindowContent {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}