html, body{
  width: 100%;
  height: 100%;
  font-family: 'Quicksand', sans-serif;
  padding: 0px;
  margin: 0px;
}

/*************************
   Global Components
*************************/
.main{
  width: 100%;
  height: 100%;
  background-color: #f7f6f6;
  position: relative;
}
.btn-primary {
  color: #fff;
  background-color: #04c1e0;
  border-color: #04c1e0;
}
.border-left1{
  position: relative;
  background-color: #05c0e0;
}
.border-left1:before{
  content: '';
  background-color: #498faa;
  position: absolute;
  width: 50px;
  height: 10px;
  top:-10px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.border-center1{
  position: relative;
  background-color: #05c0e0;
}
.border-center1:before{
  content: '';
  background-color: #05c0e0;
  position: absolute;
  width: 50px;
  height: 10px;
  left: 45%;
  top:-5px;
  border-radius: 2px;
}
.logo{
  width: 180px;
  margin: 0px auto 10px auto;
}
.logo img{
  max-width: 100%;
}
/************************
  Login 1
************************/
.logn-style1{
  background-position: center;
  background-size: cover;
}
.logn-style1:before{
  content: "";
  background-color: #033942;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.login-box-centered{
  height: 100%;
}
.log-box-style1{
  width: 30%;
  background-color: #fff;
  margin: 0 auto;
  padding: 50px;
  border-radius: 5px;
}
.box_header{
  position: relative;
}
.box_header h3{
  text-transform: uppercase;
  font-size: 20px;
}
.box_body{
  padding: 10px 0px;
  margin: 0px;
}
.box_footer p{
  text-align: center;
}
/***********************
  parsley style
***********************/
.parsley-errors-list{
  margin: 0px;
  padding: 5px 0px 0px 10px;
}
.parsley-errors-list li{
  color:red;
  list-style-type: none;
}
/***********************
  pnotify style
***********************/

/***********************
  Responsive codes
***********************/
@media (max-width: 300px) {
  .log-box-style1{
    width: 100%;
  }
}
@media (min-width: 301px) and (max-width: 600px) {
  .log-box-style1{
    width: 100%;
  }
}
@media (min-width: 601px) and (max-width: 765px) {
  .log-box-style1{
    width: 80%;
  }
}
@media (min-width: 765px) and (max-width: 990px) {
  .log-box-style1{
    width: 60%;
  }
}
@media (min-width: 991px) and (max-width: 1024px) {
  .log-box-style1{
    width: 60%;
  }
}
@media (min-width: 1025px) and (max-width: 1544px) {
  .log-box-style1{
    width: 40%;
  }
}
