@import url("../fonts/roboto/stylesheet.css");

*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin:0px;
    padding:0px;
}
html {
	height: 100vh;
	overflow-y: hidden;
}
body{
	font-size:12px;
	color:#333;
	background: #fff;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: linear-gradient(-50deg,#4085b3,#0f4c75);
    /*background: -webkit-linear-gradient(bottom, #005bea, #00c6fb);
    background: -o-linear-gradient(bottom, #005bea, #00c6fb);
    background: -moz-linear-gradient(bottom, #005bea, #00c6fb);
    background: linear-gradient(bottom, #005bea, #00c6fb);*/
}
h1,h2,h3,h4,h5,h6{
	margin:0;padding:0;
}
div[class*="col-"]{
	padding:0px;
}
.bg {
    position: absolute;
    top: 0;
    object-fit: cover;
}
img.bg-topright {
	right: 0;
}
img.bg-right {
	top: 50%;
	right: 1%;
}
img.bg-left {
	top: 25%;
	left: 0;
}
img.bg-bottomleft {
	top: auto!important;
	bottom: 0;
	left: 0;
}
img.bg-bottom {
    top: auto;
    bottom: 0;
    right: 25%;
}
.heading{
	text-align: center;
	color:#fff;
	padding:15px;
	margin-bottom: 15px;
	overflow: hidden;
}
.rightside .heading h3{
	font-weight: 700;
	font-size:20px;
	text-transform: uppercase;
}
.login-container{
	margin:0 auto;
	margin-top:50px;
	width: 500px;
	position: relative;
}
.logo-title{
	text-align: center;
	margin-bottom: 15px;
}
.login-container .box{
	background:#fff;	
	border-radius: 5px;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.2);
	overflow: hidden;
}
.start-container{
	background:#fff;
	margin:0 auto;
	margin-top:100px;
	border-radius: 10px;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.5);
	overflow: hidden;
	width:400px;
	padding:15px;
	text-align: center;
}
.start-container h1{
	color:rgba(0,0,0,0.5);
	margin:15px 0px 30px;
	font-weight: normal;
	font-size: 30px;
}
.btn-pane{
	margin-top:40px;
}
.login-image{
	background:#222;
	overflow: hidden;
	position: relative;
}
.login-image img{
	width: 100%;
}
.login-image h4.title{
	position: absolute;
	bottom: 0px;left:0px;right:0px;
	padding:30px;
	color:#fff;
	font-size:25px;
	text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.3));
    text-shadow:0px 1px 1px rgba(0,0,0,0.3);
}
.login-client{
	padding:15px;
	background: #a95e14;
	color:#fff;
	overflow: hidden;
	padding-bottom:0px;
}
.client-logo{
	float: left;
	width:100px;
	height: 100px;
	margin-right:15px;
}
.client-logo img{
	width: 100px;
}
.login-client h2{
	font-size: 15px;
	margin-bottom: 10px;
}
form{
	padding:15px;
}
.form-control {
    border: 1px solid #fff;
    background: none;
    height: 40px;
    border-radius: 25px;
    font-size: 1.5rem;
    color: #fff!important;
    box-shadow: none;
    /* -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0)!important; */
}
.form-control:focus{
	border:1px solid #aaa!important;
}
.btn{
	box-shadow: 0px 1px 1px rgba(0,0,0,0.3)!important;
	border:1px solid rgba(0,0,0,0)!important;	
	padding:10px;
}
.btn-signin{
	background:#ff7f00;
	color:#fff!important;
	font-weight: bold;
	font-size:18px;
	text-shadow:0px 1px 1px rgba(0,0,0,0.2);
}
.btn-submit{
	background: #FFC947;
	font-weight: 700;
	color:#000!important;
	cursor: pointer;
	border-radius: 25px;
    font-size: 1.5rem;
}
.btn-circle{
	width: 100px;
	height: 100px;
	display: inline-block;
	margin:0 auto;
	border-radius: 50em;
	font-size: 20px;
	font-weight: 100;
	border:none!important;
}
.input-bg{
	position: relative;
}
.input-bg .icon{
	position: absolute;
	top:10px;
	left:20px;
	font-size:20px;
	color:#fff;
}
.input-bg .form-control{
	padding-left: 45px;
}
input::placeholder {
  color: #fafafa!important;
}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fafafa!important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #fff;
  -webkit-text-fill-color: rgba(255,255,255);
  -webkit-box-shadow:none;
  transition: background-color 5000s ease-in-out 0s;
}
.notice{
	margin:0 15px 5px;
	background: #485156;
	color:#fff;
	display: block;
	padding:10px;
	text-align: center;
	border-radius: 3px;
	position: relative;
}
.notice::before{
	content: "";
	border:10px solid transparent;
	border-top:10px solid #485156;
	position: absolute;
	bottom:-20px;left:30px;
}
.notice-error{
	background:#c0392b;
	margin:-5px;
	padding:10px;
	color:#fff;
	border-radius: 3px;
	position: relative;
}
.notice-error::before{
	content: "";
	border:8px solid transparent;
	border-top:8px solid #c0392b;
	position: absolute;
	bottom:-16px;left:27px;	
}
.footer{
	padding:15px!important;
	text-align: center;
	color:#fff;
	font-weight: bold;
	font-size: 16px;
	text-shadow:0px 1px 2px rgba(0,0,0,0.5);
}
/* Bootstrap Modal Theme */
.modal{
    z-index: 9999!important;
    text-align: center;
}
.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
}
.modal-dialog{    
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    border:none!important;
    overflow: visible!important;
}
.modal-content{
    border-radius: 3px!important;
    -webkit-border-radius: 0px!important;
    border:none!important;
    padding:15px;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.1)!important;
}
.modal-header{    
    margin:-1px 0 0;
    padding: 10px 15px;
    border:none;
}
.modal-header h4{
    margin:0;
}
.modal-header .close{
}
.modal-footer{
    padding:10px 15px;
    border:none;
    text-align: center;
}
.modal.zoom .modal-dialog{
    opacity: 0; transform: scale(.8);
    transition:all 200ms ease-out;
    overflow: auto;
}
.zoom.in .modal-dialog{
    opacity: 1; transform: scale(1);
    transition:all 200ms ease-out;
}
.modal .chosen-container{
    width: 100%!important;
}
.font-thin{
	font-weight: 300;
}
@media (max-width: 992px) { 
	.login-container{
		margin:0px auto;
	}

}
@media (max-width: 768px) { 
	.login-container{
		margin:50px auto 0px;
		width: 90%;
		background:none;
		box-shadow:0px 0px 0px rgba(0,0,0,0);
		border-radius: 0px;
	}
	/*.login-container::before{
		content: "";
		position: fixed;
		top:0px;left:0px;bottom:0px;right:0px;
		background:rgba(0,0,0,0.5);
		z-index: 0; 
	}*/
	.login-container .box{
		background: none;
		box-shadow: 0px 0px 0px rgba(0,0,0,0);
	}
	.start-container{
		width: 90%;
	}
	.login-image{
		background:none;
		margin-bottom: 30px;
	}
	.login-image h4.title{
		position: relative;
		color:#fff;
		padding:0px;margin:0px;
		background:none;
		height: 50px;line-height: 50px;
	}
	.login-image img{
		display: none;
	}
	.login-client{
		display: none;
	}
	.heading{
		display: none;
	}
	.footer{
		margin:0px;padding:0px;
	}
	.notice{
		margin-bottom: 15px;
	}
	/*.form-control{
		box-shadow: 0px 0px 0px rgba(0,0,0,0), inset 0px 0px 0px rgba(0,0,0,0)!important;
		-webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0), inset 0px 0px 0px rgba(0,0,0,0)!important;
		border:none!important;
	}*/
	.col-sm-6{
		padding: 0px!important;
		margin-bottom: 10px;
	}
	.logo-title{
		position: relative;
	}
	.footer{
		position: relative;
	}
}