/*
Tmeplate    :    Custom css 
Description :    Used define proporties of website layout
Author      :    Gajanan Mallik, Fullstack Software Developement Engineer
AuthorURI   :    http://drgsoftware.com/me;

*/

/*
General Layout
*/
a, a:hover{
	text-decoration: none;
}
ul{
	list-style: none;
}

.text-pink{
	color: #fd3f6b;
}
.text-red{
	color: red;
}
.pointer{
	cursor: pointer;
}
/*
Login page style layout
*/
.login-home-header{
	width: 100%;
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/static/imperial-main.png);
    min-height: 800px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.logo-header{
	width: 100px;
	height:100px;
	margin: 100px auto 20px auto;
}
.logo-header img{
	max-height: 100px;
	max-width: 100%;
}
.login-panel{
	width: 25%;
	height: auto;
	/*position: absolute;
	margin: 150px auto 0 auto;*/
	margin-left: auto;
	margin-right: auto;
	padding: 20px 30px 20px 30px;
	background: #fff;
	filter: drop-shadow(0px 0px 2px #ccc);
	border-radius: 4px;
}

.login-panel h2{
	font-size: 25px;
	line-height: 30px;
	margin-top: 0px;
	margin-bottom: 20px;
}
#forgot_pass{
	color: #fd3f6b;
	cursor: pointer;
}


/*
Form layout like input field,select, label, radio, checkbox, etc
*/
.form-input{
	width: 100%;
	height: 32px;
	padding: 2px 5px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 12px;
}
.form-input:focus{
	outline: none !important;
	border-color: #1F386B;
}

/*
Site button
*/
.login-btn{
	height: 32px;
	background: #1F386B;
	border: none;
	color: #fff;
	padding-right: 15px;
	padding-left: 15px;
}

.login-btn-lg{
	width: 100%;
}

.login-btn:focus{
	outline: none !important; 
}

.form-group .login-btn{
	margin-top: 10px;
	margin-bottom: 10px;
}

/*Site custom alert dialog box*/
 
.alert-cover {
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity:0.9;
	z-index: 99999;
	display:none;
	text-align: center;
}
.alert-dialog {
	background-color:#fff;
	border:1px solid #222;
	border-radius: 2px;
	height:100px;
	width:400px;
	font-size:14px;
	margin: 0 auto;
	position: absolute;
	left:35%;
}
.btn_dialog {
	background:#2b323a;
	height:20px;
	padding:0 10px;
	border:1px solid #2b323a;
	color:#eee;
	font-size:12px;
	cursor: pointer;
}
.btn_dialog:focus{
	outline: none !important;
}
.alert-dialog p {
  	padding:20px 0 10px 0;
}
.alert-dialog font {
  	padding:20px 0 10px 0;
}

/*Copy right*/
.cpright p{
	color: #eee;
}	
.cpright p a{
	color: #fd3f;
}

/*#get-msg{
	width: 400px;
	margin: 0 auto;
}
#get-msg p.text-success{
	padding: 10px;
	background: #008000;
	color: #fff;
}
#get-msg p.text-danger{
	padding: 10px;
	background: red;
	color: #fff;
}
.submit-close{
	font-size: 20px;
	cursor: pointer;
}*/