@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:300');
@import url('https://fonts.googleapis.com/css?family=Mitr:300');



/*---Media Queries --*/
@media (max-width: 992px) {

  }
@media (max-width: 768px) {
  
}
@media (max-width: 576px) {
  
}


/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fixed {
  background-image: url('img/mac.png');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}
/*--- LOGIN --*/
.login-page {
  font-family: 'Mitr', sans-serif;
  width: 545px;
  padding: 3% 0 0;
  margin: auto;
}
.login-form {
  font-family: 'Mitr', sans-serif;
  color: #423b57;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0); /* login box */
  max-width: 360px;
  margin: 0 auto 10px;
  padding: 10px;
  text-align: center;
  /*box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);*/
}
.login-form input {
  font-family: 'Mitr', sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0.1;
  border-color: #b0b0b0 !important;
  border-radius:10px; /*radius user-pass*/
  margin: 0 0 15px;
  padding: 13px;
  box-sizing: border-box;
  font-size: 14px;
}
.login-form button {
  font-family: 'Mitr', sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  outline: 0;
  background: #624c9d; /*button color ef8e31*/
  width: 100%;
  border: 0;
  border-radius:10px; /*radius login*/
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.login-form button:hover,.form button:active,.form button:focus {
  background: #240f5b; /*button hover ffb32e*/
}
.login-form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
}
.login-form .message a {
  color: #4CAF50;
  text-decoration: none;
}
.login-form .register-form {
  display: none;
}
.login-footer {
  font-family: 'Mitr', sans-serif;
  font-size: 11px;
  /*font-weight: bold;*/
  color: #949494;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  margin: 50px auto 0;
  padding: 10px;
  text-align: center;
}












/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/








