* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

input,
button,
textarea,
select {
	font: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	background-image: url("../Img/login-background.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.logo {
	width: 261px;
	height: 123px;
	background-image: url("../Img/login-logo.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin: 0 0 72px 0;
}

.form__container {
	max-width: 775px;
	height: 100%;
	max-height: 518px;
	padding: 24px 24px 31px 24px;
	border-radius: 8px;
	background: rgba(34, 69, 141, 0.7);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	font-family: "Roboto Flex", sans-serif;
	margin: 10px;
}

.form__container--first {
	width: 100%;
	display: flex;
	min-height: 0;
	height: 303px;
	flex-shrink: 1;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.form__title {
	color: rgba(255, 255, 255, 1);
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	line-height: 140%;
}

.form__title--subtitle {
	color: rgba(255, 255, 255, 1);
	font-size: 13px;
	font-weight: 200;
	margin-top: 2px;
	text-align: center;
}

.form__input {
	width: 100%;
	height: 40px;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, 1);
	background-color: transparent;
	color: rgba(217, 217, 217, 1);
	font-size: 16px;
	font-weight: 400;
	padding: 16px 12px;
}

	.form__input::placeholder {
		color: rgba(217, 217, 217, 1);
		opacity: 1;
	}

	.form__input:focus {
		outline: none;
	}

.form__button--container {
	width: 100%;
}

.form__button {
	width: 100%;
	height: 40px;
	border-radius: 8px;
	background: linear-gradient( 90deg, rgba(0, 22, 63, 1), rgba(0, 57.619049072265625, 165, 1) 100% );
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.6);
	cursor: pointer;
	color: rgba(255, 255, 255, 1);
	font-size: 16px;
	font-weight: 500;
	border: none;
}

.form__link {
	color: rgba(202, 196, 208, 1);
	font-size: 14px;
	font-weight: 400;
	margin-top: 7px;
	text-decoration-line: underline;
	align-self: flex-start;
}

.form__description {
	color: rgba(202, 196, 208, 1);
	font-size: 13px;
	font-weight: 200;
	text-align: center;
	margin-top: 10px;
}

@media (max-height: 768px) {
	.logo {
		display: none;
	}
}
#fancy2fa{
	color: white;
}
	#fancy2fa img {
		display: inline;
	}
.green-cell {
	color: white;
}
.red-cell {
	color: red;
}
@media (max-width: 400px) {
	.form__title {
		font-size: 22px;
	}

	.form__title--subtitle {
		font-size: 11px;
	}

	.form__container {
		padding: 24px;
	}

	.form__description {
		font-size: 12px;
	}
}

#login:-internal-autofill-selected {
	background-color: transparent !important;
	color: rgba(217, 217, 217, 1) !important;
}

