@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);
html, body {width: 100%;height: 100%;}
body {
    margin: 0;
    overflow: hidden;
}
.back-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 115%;
    z-index: -1;
    object-fit: cover;
    overflow: hidden;
}
.full-screen {width: 100%;height: 100%;}
.full-width {width: 100%;}
.t-l-layout {table-layout: fixed;}
.w-33-p {width: 33%;}
.p-7-12 {padding: 7px 12px;}
.text-center {text-align: center;}
.display-none {display: none;}
.display-block {display: block;}
.blue-text {color: rgba(18,10,143,1);}
.pull-right{float: right;}
.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.gradient-layer {
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65)));
    opacity: 0.7;
    z-index: -1;
    height: 115%;
    overflow: hidden;
}
.header-text {
    text-align: center;
    padding: 100px;
    padding-bottom: 75px;
    color: #fff;
	font-size: 56px;
	font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.login-form input {
    min-width: 350px;
	height: 30px;
	border: 2px solid rgba(18,10,143,1);
	border-radius: 2px;
	color: rgba(18,10,143,1);
	font-size: 16px;
	font-weight: 600;
	padding: 4px 10px;
    margin-top: 10px;
}
.login-form button {
	min-width: 374px;
	height: 35px;
	border:0;
	background: rgba(18,10,143,1);
	border-radius: 2px;
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	padding: 6px 10px;
	margin-top: 10px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.5);
}
.login-form button:hover {background:rgb(25, 14, 208)}
.login-form button:active{background:rgb(11, 6, 95);}
.login-form input:focus, .login-form button {outline: none;}
.login-form .control {
    position: relative;
}
.login-form .control .icon {
    position: absolute;
    right: 15px;
    top: 43%;
    cursor: pointer;
    color: #333;
}
.form-feedback-container {border-radius: 2px;padding: 10px 0px;padding: 7px 12px;}

.form-feedback-container.success {background-color: #559922;}
.form-feedback-container.warning {background-color: #F1BD19;}
.form-feedback-container.error {background-color: #E23022;}
.form-feedback-container .message {color: #FFF;font-size: 18px;font-weight: 500;}



/* Dialog for password change */

.form-right-link-cell {
    padding-top: 25px;
    text-align: left;
}
#forgot-pwd-link {
    color: #FFF;
}
.pwd-container {
	width: 100%;
	top: 15px;
	left: 0;
}

.pwd-container {
	color: #646464;
	position: fixed;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	pointer-events: none;
}

.pwd-container-content {
	width: 50%;
	max-width: 560px;
	min-width: 290px;
	background: #fff;
	padding: 1em;
	text-align: center;
	position: relative;
	z-index: 5;
	opacity: 0;
    border-radius: 3px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}

.pwd-container-open .pwd-container-content {
	pointer-events: auto;
}

.pwd-container h2 {
	color: #F89406!important;
	margin: 0;
	font-weight: 500;
	font-size: 2em;
	padding-left: 1em;
	padding-bottom: 1em;
	margin: 0;
}

.pwd-container h2:before {
    content: '';
    height: 1.5em;
    width: 1.5em;
    background: url(../images/alert-circle-outline.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-left: -1.7em;
    margin-top: -0.2em;
}

.pwd-container-overlay {
	pointer-events: none;
}

.pwd-container .pwd-container-content {
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.pwd-container.pwd-container-open .pwd-container-content {
	-webkit-animation-name: anim-open;
	animation-name: anim-open;
	-webkit-animation-timing-function: cubic-bezier(0.6,0,0.4,1);
	animation-timing-function: cubic-bezier(0.6,0,0.4,1);
}

.pwd-container .pwd-container-content {
	-webkit-animation-name: anim-close;
	animation-name: anim-close;
}

@-webkit-keyframes anim-open {
	0% { opacity: 0; -webkit-transform: scale3d(0, 0, 1); }
	100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); }
}

@keyframes anim-open {
	0% { opacity: 0; -webkit-transform: scale3d(0, 0, 1); transform: scale3d(0, 0, 1); }
	100% { opacity: 1; -webkit-transform: scale3d(1, 1, 1); transform: scale3d(1, 1, 1); }
}

@-webkit-keyframes anim-close {
	0% { opacity: 1; }
	100% { opacity: 0; -webkit-transform: scale3d(0.5, 0.5, 1); }
}

@keyframes anim-close {
	0% { opacity: 1; }
	100% { opacity: 0; -webkit-transform: scale3d(0.5, 0.5, 1); transform: scale3d(0.5, 0.5, 1); }
}
button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

.success-c {color:#559922;}
.error-c {color: #E23022;}

.feedback-container {
    min-height: 20px;
}

#back-to-login-link {
    color: #000;
    opacity: 0.9;
    font-size: 16px;
}
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.form-container .wrapper {
    text-align: center;
}
.form-control {
    min-width: 280px;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.42857143;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-image: none;
}
.btn-send-reset {
    background-color: #559922;
    color: #FFF;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.btn-send-reset:hover {
    background-color: darkgreen;
}
.btn-send-reset:focus {
    outline: none;
}
.btn-send-reset.disabled {
    box-shadow: none;
    opacity: .65;
    cursor: not-allowed;
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
.powered-by-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, .02);
    border-radius: .25rem;
    color: #FFF;
    padding: .25rem;
}
