@media screen and (max-width: 799px) {

	/* .signin-holder {
		padding: 32px 16px;
	} */
	.logo-holder-col {
		min-height: 120px;
	}

	.signin-holder {
		flex-direction: column;
		gap: 35px;
	}

	/* .logo-and-title-holder {
		padding-bottom: 0.5rem;
	} */

	/* .signin-logo-vertical {
		display: none;
	} */
}

@media screen and (min-width: 800px) {
	.logo-holder-col {
		border-right: 1px solid rgba(0, 0, 0, .1);
		margin-right: 2rem;
		margin-left: -2rem;
	}

	/* .signin-holder {
		padding: 42px;
	} */
	.logo-holder-col {
		min-height: 200px;
	}

	/* .logo-and-title-holder {
		padding-bottom: 2rem;
	} */
}


html,
body {
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-family: var(--font-family-sans-serif);
}



body {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	/* background-color: #0d3e5f; */
	background-color: #013565;
	box-shadow: inset 0 0 100px rgba(0, 0, 0, .5);
	padding: 0;
	margin: 0;

	min-width: 300px;

	transition: background-color 0.25s ease;
}

.signin-holder {
	width: 100%;
	max-width: 850px;
	padding: 42px;
	margin: auto;
	background-color: white;
	box-shadow: 0 0 24px rgba(0, 0, 0, .25);
	border-radius: 12px;

	min-width: 300px;
}

.signin-holder #signupPassword {
	display: none;
}

.review-login-holder {
	width: 100%;
	max-width: 450px;
	padding: 36px;
	margin: auto;
	background-color: rgba(255, 255, 255, .85);
	box-shadow: 0 0 24px rgba(0, 0, 0, .25);
	border-radius: 8px;

	min-width: 250px;

	animation: PopOn .4s ease-out 1;
}

/* .form-signin .checkbox {
  font-weight: 400;
} */

.form-signin {
	width: 100%;
}

.form-signin .form-control {
	position: relative;
	box-sizing: border-box;
	height: auto;
	padding: 10px;
	margin: 12px 0;
	font-size: 16px;
}

.form-signin .form-control:focus {
	z-index: 2;
}

/* .form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
} */
.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
	border-color: #dc3545;
}

.spinner-border-sm {
	vertical-align: middle !important;
}

.logo-holder-col {
	/* width: 400px; */
	/* padding-top: 50px;
	padding: 50px 0 0 0; */
	/* border-right: 1px solid rgba(0, 0, 0, .1);
	margin-right: 2rem;
	margin-left: -42px; */
	position: relative;
	/* min-height: 200px; */

	min-width: 250px;
	padding: 0;

	transition: margin 0.25s ease;

}

.form-holder-col {
	min-width: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.login-form-btn {
	width: 100%;
}

/* .logo-holder-col.signup {
	padding-top: 95px;
} */
.logo-holder-col.forgot {
	/* padding-top: 35px; */
}

.logo-and-title-holder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	/* padding-bottom: 2rem; */
}

/* .signin-logo-vertical {
	background-image: url('../../images/logo/logo.svg');
	background-repeat: no-repeat;
	background-size: 100px;
	background-position: center;

	width: 150px;
	margin: auto;
	height: 150px;
} */
.signin-logo-horizontal {
	/* background-image: url('../../images/logo/axle_edit_2022_color.svg'); */
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin: auto;
	/* margin-bottom: 20px; */

	max-width: 100%;
	/* width: 250px;
	height: 250px; */

	text-align: center;

	/* animation: FadeIn 0.5s ease-out 1; */
}

.signin-logo-horizontal img {
	width: 250px;
	height: auto;
}

.logo-title {
	font-family: 'Roboto', sans-serif;
	font-size: 2.5rem;
	font-weight: 400;
	text-align: center;
	background-image: linear-gradient(to right, var(--logo-light-blue), var(--logo-dark-blue));
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
}

.logo-title .io {
	/* font-size: 1.75rem; */
	display: none;
}

.logo-title .libra {
	color: var(--logo-light-blue);
}

.logo-title .vid {
	color: var(--logo-dark-blue);
}

p.login-instructions {
	display: none;
}