body {
	background-color: #f2f9ff;
	font-family: "Roboto", sans-serif;
	margin: 0;
}

.content-container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100svh;
}

.form-container {
	min-width: 228px; /* The minimum size without displacing inputs */
	width: 80%;
	max-width: 500px;
	background-color: white;
	margin: 0 auto;
	padding: 40px;
	border-radius: 40px;
	box-shadow: 0 0 10px rgba( 0, 0, 0, 0.1 );
}

.text-centered {
	text-align: center;
}

.form-header {
	padding: 16px 0;
}

.title-container {
	font-weight: bold;
	font-size: 34px;
	padding-bottom: 8px;
}

.hidden {
	display: none;
}

.error-text {
	color: red;
}

#permanent-error-container {
	padding-bottom: 12px;
}

.input-wrapper {
	padding: 16px 0;
}

.input-label {
	display: block;
	margin: auto;
	font-size: 16px;
	border: none;
	width: 100%;
	padding-bottom: 8px;
}

.input-text-field {
	border-radius: 6px;
	border-width: 2px;
	border-color: rgba( 0, 0, 0, 0.3 );
	display: block;
	margin: auto;
	font-size: 16px;
	height: 45px;
	width: 100%;
	padding: 0 16px;
	box-sizing: border-box;
}

.input-text-field.error-highlight {
	border-color: red;
}

.input-error {
	padding-top: 8px;
}

.submission-button {
	border-radius: 6px;
	display: block;
	margin: auto;
	font-size: 18px;
	border: none;
	background-color: #004989;
	color: #fff;
	font-weight: normal;
	width: 100%;
	min-height: 45px;
	max-height: 45px;
	margin-top: 0;
	cursor: pointer;
}

.submission-button:hover {
	background-color: #003666;
}

.submission-button:active {
	background-color: #005299;
}

#continue-hidden-form {
	display: none;
}

#system {
	appearance: none;
	background-color: white;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M297.4 438.6C309.9 451.1 330.2 451.1 342.7 438.6L502.7 278.6C515.2 266.1 515.2 245.8 502.7 233.3C490.2 220.8 469.9 220.8 457.4 233.3L320 370.7L182.6 233.4C170.1 220.9 149.8 220.9 137.3 233.4C124.8 245.9 124.8 266.2 137.3 278.7L297.3 438.7z'/%3E%3C/svg%3E");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
}

#system:open {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath d='M297.4 201.4C309.9 188.9 330.2 188.9 342.7 201.4L502.7 361.4C515.2 373.9 515.2 394.2 502.7 406.7C490.2 419.2 469.9 419.2 457.4 406.7L320 269.3L182.6 406.6C170.1 419.1 149.8 419.1 137.3 406.6C124.8 394.1 124.8 373.8 137.3 361.3L297.3 201.3z'/%3E%3C/svg%3E");
}

/* Contact Us */
.help-redirect-button {
	z-index: 999;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 20px;
	right: 20px;
	border-radius: 50%;
	text-align: center;
	width: 48px;
	height: 48px;
	background-color: #004989;
	box-shadow: 0 8px 12px 0 rgba( 0, 0, 0, 0.35 );
}

.help-redirect-icon-container {
	height: 32px;
}

.help-redirect-icon {
	display: inline-block;
	height: 22px;
	width: 22px;
	background-image: url( "https://aladtec-media-images.s3.amazonaws.com/salesforce-chat-icon.svg" );
	margin-top: 7px;
}