@charset "utf-8";


@import url//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css;

div.main{
height:calc(100vh);
width:100%;
}

[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

/* ---------- GENERAL ---------- */

* {
  box-sizing: border-box;

  &:before,
  &:after {
    box-sizing: border-box;
  }

}

body {
   
  color: #606468;
  font: 87.5%/1.5em 'Open Sans', sans-serif;
  margin: 0;
  background-image: url(../img/bkg.jpg);
  background-size: cover;
}

a {
  color: #fff;
  text-decoration: none;
  font-size:12px;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
  color: #fff;
}

input {
  border: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  padding: 0;
  -webkit-appearance: none;
}

p {
  line-height: 1.5em;
}


.container {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- LOGIN ---------- */

#login form{
  background: #ffffff33;
  padding: 20px 60px;
  border-radius: 5px;
  justify-items: center;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
#login, .logo{
    display:inline-block;
}
 
.logo{
color:#fff;
font-size:50px;
  line-height: 125px;
}

#login form span.fa {
  border-radius: 5px 0px 0px 5px;
  color: #fff;
  display: block;
  float: left;
  height: 40px;
  font-size:24px;
  line-height: 40px;
  text-align: center;
  width: 50px;
  background: #94c6ea;
}

#login form input {
  height: 40px;
}
fieldset{
    padding:0;
    border:0;
    margin: 0;

}

#login form input[type="submit"] {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  background-color: #0056b3;
  color: #fff;
  font-weight: bold;
  /* margin-bottom: 2em; */
  text-transform: uppercase;
  padding: 5px 60px;
  height: 35px;
  transition: 0.3s;
  border: none;
}

#login form input[type="submit"]:hover {
  opacity: 0.6;
}

#login > p {
  text-align: center;
}

#login > p span {
  padding-left: 5px;
}
.middle {
  display: flex;
  justify-content: center;
}

@media(max-width: 1024px){

  #background-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
  }
}

.img_logo {
     width: 200px;
     opacity: 0.4;
}
.form-control {
  width: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}