html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body {
	background: #ddd;
}

img {
	width: 100%;
}

.group:after {
	content: "";
	display: table;
	clear: both;
}

.wrapper {
	width: 540px;
	margin: 30px auto;
	background: #fff;
	border-radius: 5px;
	box-shadow: 1px 1px 10px -3px #000;
}

.banner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.banner__left-logo, .banner__right-logo {
	margin: 10px 5px;
}

.banner__left-logo {
	width: 41%;
}

.banner__right-logo {
	width: 41%;
}

.header-area {
	text-align: center;
	color: #fff;
	padding: 3px 0;
	background: rgb(61, 138, 197);
	background: rgba(64, 107, 152, .9);
}

h1 {
	font-size: 24px;
	margin: 0;
	padding: 4px 0;
}

hr {
	margin-bottom: 0;
}

h2 {
	font-size: 23px;
}

h3 {
	font-size: 21px;
	margin-top: 10px;
}

.form-sub-header {
	padding: 5px;
	text-align: center;
}

.submit-button {
	margin-top: 5px;
	margin-bottom: 30px;
}

.form-horizontal {
	margin: 30px 0 0 10px;
}

.form-horizontal .form-group, #btn-login-submit {
	width: 270px;
}

.input-wrapper {
	display: flex;
	justify-content: center;
}

.error-area {
	text-align: center;
	color: red;
	margin-right: 15px;
	margin-left: 15px;
}

.error {
	font-style: italic;
	margin-bottom: 0;
}

.form-header-group {
	margin-left: 10px;
	margin-bottom: 15px;
}

.form-header-group h2 {
	font-size: 26px;
	text-align: center;
	margin-bottom: 0;
	margin-top: 15px;
}

.form-footer {
	text-align: center;
	padding: 10px 0;
	margin: 0;
	color: #0054a6;
}

/**************************************************
    ACCESS CONFIRMATION PAGE
***************************************************/

.confirm-area p {
	margin-top: 10px;
}

.confirm-area, .radio-buttons {
	padding: 5px 10px;
}

.return-label {
	display: inline-block;
	margin-right: 10px;
}

.action-area {
	display: flex;
	justify-content: center;
}

#confirmationForm .submit-button {
	margin-top: 10px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.wrapper {
		width: 340px;
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	.wrapper {
		width: 500px;
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	.wrapper {
		width: 540px;
	}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	.wrapper {
		width: 560px;
	}
}