@import url('https://fonts.googleapis.com/css?family=Muli:400,700&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0
}

body {
  background: #E9EDF2  url('../images/bk.jpg')  no-repeat top center;
  /*background: #E9EDF2;*/
  height: 100vh;
  min-height: 100vh;
  line-height: 20px;
  padding: 50px 15px 50px 15px;
  font-family: 'Muli', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #34425A;
}

.form {
  background-color: rgba(255,255,255,0.8);
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  padding: 50px;
  /*
  -webkit-box-shadow: 0 5px 21px -9px #000;
  -moz-box-shadow: 0 5px 21px -9px #000;
  box-shadow: 0 5px 21px -9px #000;
  */
}

h2 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-transform: uppercase;
}

a {
  color: #34425A;
  text-decoration: none;
  outline: none !important;
}

a:hover,
a:focus,
a:active {
  color: #34425A;
  text-decoration: underline;
  outline: none !important;
}

.logo {
  text-align: center;
}

.logo img{
}

.message {
  color: #cc0000;
  text-align: center;
}

label,
input,
button {
  display: block;
  width: 100%;
}

label {
  margin-bottom: 5px;
  padding-left: 15px;
}

input {
  margin-bottom: 5px;
  border-radius: .25rem;
  padding: 10px 10px 10px 40px;
  border: 2px solid #34425A;
  background-color: rgba(255,255,255,0.8);
  color: #34425A;
  font-size: 0.85rem;
  letter-spacing: 1px;
  outline: none !important;
}

.user {
  background: rgba(255,255,255,0.8) url('../images/login_user.png') no-repeat 10px center;
}

.pass {
  background: rgba(255,255,255,0.8) url('../images/login_pass.png') no-repeat 10px center;
}

button {
  padding: 10px;
  border: 0 none;
  background-color: #debb66;
  color: #fff;
  margin: 40px 0 20px 0;
  font-size: 1rem;
  cursor: auto;
  border-radius: .25rem;
  outline: none !important;
}

button:hover {
  background-color: #c8a758;
}

[type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

/*
@media (min-width: 768px) { 
  .form {
    -webkit-box-shadow: 0 5px 21px -9px #000;
    -moz-box-shadow: 0 5px 21px -9px #000;
    box-shadow: 0 5px 21px -9px #000;
  }
}
*/

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
  .form {padding: 20px;}
}