* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	height: 100%;
	font-family: Arial, sans-serif;
	color: #ffffff;
}

body {
	position: relative;
	background-color: #000d38;
	background-size: cover;
	background-position: center;
}

#background-fader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	pointer-events: none;
	z-index: 0;
}

.login-container {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-form {
	background-color: rgba(0, 13, 56, 0.85);
	padding: 40px;
	border-radius: 8px;
	width: 400px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
	text-align: center;
}

.login-form h2 {
	margin: 20px 0;
	color: #ffffff;
	font-size: 1.5rem;
}

.logo-container {
	margin-bottom: 20px;
}

.extranet-logo {
	width: 80%;
	border-radius: 8px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	background-color: #ffffff;
	padding: 10px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 1.1rem;
}

.form-group input {
	width: 100%;
	padding: 15px;
	font-size: 1rem;
	border: 2px solid transparent;
	border-radius: 4px;
	transition: border-color 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: #19254d;
}

.btn {
	width: 100%;
	display: inline-block;
	padding: 15px;
	font-size: 1.2rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	margin-bottom: 15px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.btn-active {
	background-color: #ff338a;
	color: #ffffff;
}

.btn-active:hover {
	background-color: #e6337a;
}

.forgot-password {
	margin: 15px;
	margin-bottom: 30px;
}

.forgot-password a {
	color: #ff338a;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.forgot-password a:hover {
	color: #e6337a;
	text-decoration: underline;
}

.sso-button {
	width: 100%;
}

.show-isell-login-form {
	margin-top: 15px;
}

.show-isell-login-form a {
	color: #ff338a;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.show-isell-login-form a:hover {
	color: #e6337a;
	text-decoration: underline;
}

.traveltek-logo {
	margin-top: 20px;
}

.traveltek-logo img {
	width: 60%;
	max-width: 200px;
}

@media (max-width: 400px) {
	.login-form {
		width: 90%;
		padding: 20px;
	}

	.extranet-logo {
		width: 100%;
	}

	.traveltek-logo img {
		width: 80%;
	}
}

.error-messages {
	margin-top: 20px;
	font-size: 1rem;
}

.alert {
	position: relative;
	padding: 15px 50px 15px 20px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 1rem;
	line-height: 1.5;
}

.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.alert .close {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	color: inherit;
	text-decoration: none;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.password-reset-instructions {
	margin-bottom: 20px;
}

.password-criteria {
	list-style-type: none;
	padding: 0;
	margin: 10px;
}

.criteria-item {
	font-size: 14px;
}

.criteria-item.valid {
	color: #28a745;
}

.criteria-item.invalid {
	color: #dc3545;
}

.tooltip-container {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background-color: #333;
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	font-size: 14px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: background-color 0.3s ease;
	z-index: 3;
}

.tooltip-container:hover {
	background-color: #555;
}

.tooltip-container a {
	color: #fff;
	text-decoration: none;
}

.hidden {
	display: none;
}

.small-font {
	font-size: 0.8em;
}

body {
	margin: 0;
	font-family: 'Arial', sans-serif;
}

.exception-background {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	background: linear-gradient(to bottom left, #ee9c00, #e04596);
	border-radius: 12px;
}

.exception-center-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 20px;
}

.exception-center-div {
	background-color: white;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	padding: 20px;
	max-width: 80%;
	text-align: center;
	border-radius: 12px;
	margin-top: 20px;
}

.exception-center-div img {
	display: inline-block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.exception-center-div h1 {
	color: #e04596;
	margin-bottom: 10px;
	font-weight: normal;
}

.exception-center-div p {
	color: #555;
	/* Less noticeable text color */
	margin-bottom: 20px;
	font-weight: normal;
}

.exception-error-message {
	font-size: 18px;
}