.login {
	display: block;
}

.login .wrapper {
	padding: 10px;
	width: 100%;
}

.page-wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.fieldset {
	min-width: 280px;
}

.login * {
	box-sizing: border-box;
	font-family: 'Didact Gothic', sans-serif;
}

.login__forgot {
    margin-bottom: 20px;
	display: block;
}

h3 {
	font-weight: 400;
	margin-bottom: 20px;
}

.login select {
	border-bottom: 1px solid #4f4f4f;
    height: auto;
    width: 100%;
    border: 0 solid #4f4f4f;
    border-bottom-width: 1px;
    margin-bottom: 20px;
    border-radius: 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.2;
	height: 40px;
}

.login.container.align-center {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	height: 100%;
	justify-content: center;
	flex-grow: 1;
	margin: 35px auto;
}

.login .logo {
	padding-left: 10px;
	padding-right: 10px;
}

.login .logo a {
	display: flex;
	flex-flow: column nowrap;
	gap: 10px;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	color: #000;
	cursor: pointer;
}

.login .logo img {
	display: block;
	width: 100%;
	min-width: 100px;
	max-width: 200px;
}

.login .logo .icon-Logo {
	font-size: 36px;
	color: #000;
}

.login .logo h1 {
	text-align: center;
	text-transform: uppercase;
	font-size: 1.3rem;
	line-height: 1;
	color: #000;
}

.form form {
	display: flex;
	flex-flow: column nowrap;
	align-content: center;
	justify-content: flex-start;
	margin: 0 auto;
	max-width: 800px;
}

.form .label {
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.2;
}

.form input {
	width: 100%;
	border: 0px solid #4f4f4f;
	border-bottom-width: 1px;
	padding: 15px 5px 5px;
	margin-bottom: 20px;
	border-radius: 0;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.2;
	-webkit-text-fill-color: #000;
	box-shadow: 0 0 0px 40rem #ffff inset;
	-webkit-box-shadow: 0 0 0px 40rem #ffff inset;
	outline: none !important;
	height: 40px;
}

.form input:hover,
.form input:focus,
.form input:focus-visible,
.form input:active,
.form input:autofill,
.form input:auto-fill,
.form input:-webkit-autofill,
.form input:-internal-autofill-selected {
	border-color: #000;
	border-bottom-color: #000;
	border-style: solid;
	border-image: none;
	background-image: none !important;
	background-color: #fff !important;
	outline: none !important;
}

.form input::placeholder {
	color: #bdbdbd;
	-webkit-text-fill-color: #bdbdbd;
}

.form .button--primary {
	background-color: var(--main-bg);
	color: #fff;
	font-size: 1rem;
	text-align: center;
	text-transform: uppercase;
	width: auto;
	min-width: 200px;
	margin: 0 auto 20px;
}

.login a {
	text-decoration: underline;
}

.login__privacy {
	color: #000;
    background: none;
    padding: 0;
    text-decoration: underline;
    font-size: .9rem;
    border: none;
    border-radius: unset;
    transition: unset;
    width: auto;
    display: inline;
    margin-left: 10px;
}

.login__privacy:hover {
	background: none;
}

.login__privacy-container {
	display: flex;
	align-items: center;
}

input[type="checkbox"] {
	text-align: start;
    border-radius: 3px;
    border: 1px solid #afafaf;
    padding: 10px;
	width: auto;
	box-shadow: unset;
	margin: 0;
}

.pswd {
	-webkit-text-security: disc;
}

@media(max-width:768px) {
	.login.container.align-center {
		justify-content: center;
	}

	.login .wrapper {
		padding: 10px;
		width: 100%;
	}
}

/* Privacy modal */
body.no-scroll {
	overflow: hidden;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.4);
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: #fefefe;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-height: 70%;
	overflow-y: auto;
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.modal-body {
	padding: 20px;
}

.columns {
	display: flex;
    gap: 100px;
    width: 100%;
	justify-content: center;
}

.login-form {
	max-width: 300px !important;
}

.login-form input {
	text-align: center;
}

@media(max-width: 850px) {
	.columns {
		gap: 50px;
	}
}

@media(max-width:768px) {
	.modal-body {
		padding: 0;
	}

	.modal-content {
		width: 85%;
		max-height: 85%;
		position: relative;
	}

	.close {
		position: absolute;
		right: 7px;
		top: 2px;
	}
}

@media(max-width: 650px) {
	.columns {
		flex-wrap: wrap;
	}
}