/* CSS Document */
*{
	box-sizing: border-box;
}
body{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
.nm-body-wrapper{
	width: 100%;
	height: 100%;
    min-width: 100vw;
	min-height: 100vh;
	padding:0;
	margin: 0;
    position: absolute;
	background-color: #1395ba;
	/*background-image: url("../images/Background 23.svg");
    background-size: cover;
	background-position: center;*/
}
.nm-body-img{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
}
.login-body-wrap{
	width: 100%;
	height: 100%;
    min-width: 100vw;
	min-height: 100vh;
	padding:0;
	margin: 0;	
	position: absolute;
    display:flex;
    align-items: center;
}
.login-wrapper{
	width: 380px;
	height: auto;
	display:table-cell;
    baseline-shift: baseline;
    vertical-align: middle;
	position: relative;
	/*left: calc(50% - 190px);
	top: calc(40% - 100px);*/
	background-color: white;
	border-radius: 5px;
	text-align: center;
	padding: 40px;
    margin-left: auto;
    margin-right: auto;
}
.label-wrap{
	width: 100%;
	font-size: 1.2em;
	text-align: left;
	padding:8px 0px;
}
.input-wrap{
	width: 100%;
	text-align: left;
}
.login-input{
	width: 100%;
	padding: 8px 20px;
	text-align: left;
	font-size: 0.875em;
	border: solid 1px #888;
	border-radius:3px;
}
.instruction-wrap{
	width: 100%;
	padding: 5px 0px;
}
.login-title{
	width: 100%;
	text-align: center;
	font-size: 1.8em;
	color:#000f32;
}
.rem-me-wrap{
	width: 100%;
	text-align: left;
	padding: 10px 0px;
	display: grid;
	grid-template-columns: 60% 40%;
}
.forgot-pass-container{
	display: block;
}
.rem-me-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 1.1em;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.rem-me-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}
/* On mouse-over, add a grey background color */
.rem-me-container:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.rem-me-container input:checked ~ .checkmark {
	background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.rem-me-container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.rem-me-container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.login-btn-wrap{
	margin-top:20px;
	width: 100%;
}
.login-btn{
	width: 100%;
	background-color: #1395ba; /* Green */
	border: none;
	color: white;
	padding: 10px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	border-radius: 4px;
	cursor: pointer;
}
.forgot-pass-link{
	font-size: 0.86em;
	text-align: right;
	float: right;
	display: inline-block;
	color: #1395ba;
	text-decoration: none;
}
.create-ac-link{
	width: 100%;
	display: block;
	color: #1395ba;
	text-decoration: none;
	text-align: center;
}
.login-alert-wrap{
	width: 100%;
	display: block;
	padding: 0px;
}
.alt-success{
	display: block;
	width: 100%;
	color: #13bab5;
}
.alt-fail{
	display: block;
	width: 100%;
	color: #f16c20;
}
.ih-warning{
    box-shadow: 0px 0px 10px 4px rgba(231,166,26,0.75);
    /*border: solid thin rgba(231,166,26,0.75);*/
}

.ih-error{
    box-shadow: 0px 0px 10px 4px rgba(184,18,18,0.75);
}

.success {
    background-color: #90F7E8;
    color:#0C5C00;
}

.warning {
    background-color:#F5C364;
    color:#8A4D00;
}

.error {
    background-color:#F88181;
    color:#600001;
}