html, body {
	min-height: 100%;
}

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

input {
	font-family: inherit;
	width: 100%;
	padding: 5px 8px;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
}

input:focus {
	outline-color: #44A36A;
}

label {
	display: inherit;
}

a {
	color: #44A36A;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.btn {
	background: #44A36A;
	color: white;
	padding: 8px 16px;
	border: none;
	font-size: 1em;
	cursor: pointer;
}

.btn:hover {
	background: #49b274;
}

.input-error, .alert-error {
	color: #C70E2E;
}

.alert-success {
	color: #F57625;
}

.alert-success, .alert-error {
	margin-bottom: 15px;
}

#kc-header-wrapper, #kc-attempted-username, #reset-login, .hidden {
	display: none;
}

#kc-info {
	margin: 20px -20px -30px;
	background-color: #F0F0F0;
	text-align: center;
	padding: 20px;
}

#kc-page-title {
	font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 1.8em;
	color: #44A36A;
	text-align: center;
}

#kc-header {
	background-image: url(../img/logo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position-x: center;
	background-origin: content-box;
	height: 87px;
	margin-top: 60px;
	padding: 60px 20px 40px;
}

.login-card {
	padding: 0 20px 30px;
}

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

#kc-form-buttons {
	margin: 20px 0 0;
}

input[type='checkbox'], input[type='radio'] {
	width: auto;
}

.btn:disabled, .btn[disabled] {
	background-color: #9FA399;
	cursor: not-allowed;
}

.radioLabel {
	display: inline;
}

.addressLine {
	display: flex;
	margin-bottom: 8px;
}
.nowrap {
	white-space: nowrap;
}
.realigned {
	line-height: 1.75em;
}
.slightly-cleared {
	margin: 0 1em 0 0.5em;
}

input[readOnly=""] {
	cursor: default;
	background-color: #F0F0F0;
	border-color: #CCCCCC;
	border-style: solid;
}

input[readOnly=""]:focus {
	outline-color: #CCCCCC;
}

/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
	visibility: hidden;
	width: 350px;
	background-color: #ffffff;
	color: #585858;
	border-radius: 6px;
	border-style: solid;
	border-width: 1px;
	position: absolute;
	z-index: 1;
	border-color: #44a37f;
	padding: 10px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
	visibility: visible;
}

/* setting to hide default 'password toggle' icon for microsoft IE/edge */
::-ms-reveal {
	display: none;
}

@media (min-width: 768px) {
	#kc-header {
		padding: 60px 0 60px;
	}

	#kc-info {
		padding: 20px 40px;
		margin: 20px -40px -30px;
	}

	.login-card {
		max-width: 500px;
		background-color: #ebf4ef;
		margin: 0 auto 150px;
		border-top: 4px solid #44A36A;
		padding: 20px 40px 30px 40px;
		box-shadow: rgba(3, 3, 3, 0.13) 0 3px 7px 3px, rgba(3, 3, 3, 0.12) 0 11px 24px 16px;
	}
}

@media (max-width: 767px) {
	body {
		background-color: #F0F0F0;
	}

	.contents {
		background-color: #FFF;
	}

	.tooltip .tooltiptext {
		width: 200px;
	}
}

/* loading spinner */
.lds-ring {
	display: inline-block;
	position: relative;
	width: 40px;
	height: 40px;
}
.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	border: 6px solid;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #44A36A transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

