/*
*   File Name       : login_otp.css
*   Date of Created : 13/10/2017
*   Created By      : MSO125
*   Modified Date   : 13/10/2017
*   Modified By     : MS0125
*/


.info-wait {
    background-image: url('../../images/ajax_loader.gif');
    background-repeat: no-repeat;
    background-size: 40px 30px;
    background-color: #ccdde0;
   color: #169ebc;
   border: 1px solid #169ebc;
   text-indent: 25px;
}
.info-succ {
    background-image: url('../../images/login-succ.svg');
    background-repeat: no-repeat;
    background-size: 40px 30px;
    background-color: #b8dbba;
   color: #179e1e;
   text-indent: 25px;
   border: 1px solid #179e1e;
}
.info-err {
    background-image: url('../../images/login-fail.svg');
    background-repeat: no-repeat;
    background-size: 40px 30px;
    text-indent: 25px;
    background-color: #e8b3b0;
   color: #e2180d;
   border: 1px solid #e2180d;
}

.logout_message
{
   	position: absolute;
	top: 20%;
  	left: 50%;
  	-webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    border-radius: 4px;
    padding: 6px 12px;
    z-index: 999999;
}
#info-dialog {
	position: absolute;
	top: 50%;
  	left: 50%;
  	-webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    border-radius: 4px;
    padding: 6px 12px;
    z-index: 999999;
}

.home-loader {
  position: absolute;
  top: 35%;
  left: 45%;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #60bee0;
  border-bottom: 16px solid #60bee0;
  width: 80px;
  height: 80px;
  visibility: hidden;
  /*background-image: url("../../images/page-loader.gif");
  background-position: center;
  background-size: 100% 100%;*/
  -webkit-animation: loadspin 2s linear infinite;
  animation: loadspin 2s linear infinite;
  -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

@-webkit-keyframes loadspin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes loadspin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#otp-dialog {
	font-family: 'Open Sans';
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	background-color: #ffffff;
	width: 400px;
	height: 500px;
	visibility: hidden;
	z-index: 9999;
}

.opt-header{
	text-align: center;
	padding: 30px 15px;
}

h3.otp-text-center {
	text-align: center;
	 font-family: 'Open Sans';
}
.otp-input-text{
	text-align: center;
	padding: 20px;
}

.otp-input-text > input[type="button"]{

	line-height: 28px;
	background-color: #134684;
	border-radius: 5px;
	border: 1px solid #134684;
	color: white;
	padding: 0px 10px;
	cursor: pointer;
}
.otp-input-text > input[type="button"]:hover {
	background-color: #1271a5;
	border: 1px solid #1271a5;
}

.otp-input-text > input[type="text"] {
	background-color: #fcfcfc;
	box-shadow: 0px 0px 3px 0px lightblue;
	border-radius: 3px;
	border: 1px solid #28c9ed;
	line-height: 30px;
	padding: 5px;
	font-size: 16px;
	text-align: center;
}
.opt-resend {
	margin-top: 10px;
	padding: 10px;
	text-align: center;
	font-size: 12px;
}
.opt-resend a {
	color: #0d557c;
	text-decoration: none;
}
.opt-resend a:hover {
	font-weight: bold;
}

#opt-success {
	padding: 8px;
	border: 2px solid #11a318;
	color: #11a318;
	background-color: #effcf0;
	text-align: center;
	margin: 0 auto;
	border-radius: 5px;
	left: 0;
	right: 0;
	width: 80%;
}

#otp-errors {
	padding: 8px;
	border: 2px solid #aa0808;
	color: #aa0808;
	background-color: #fff7f7;
	text-align: center;
	margin: 0 auto;
	border-radius: 5px;
	left: 0;
	right: 0;
	width: 80%;
	display: none;
}
.opt-close {
	font-size: 22px;
	/*font-weight: bold;
	text-shadow: 2px 2px 3px #ccc;*/
	position: absolute;
	right: 25px;
	top: 12px;
	color: white;
	cursor: pointer;
	color: #ccc;
}
.opt-close:hover {
	color: red;
}

.forgot-info{
	position: relative;
	width: 80%;
}