html {
  height: 100%;
  background: repeating-linear-gradient(rgba(2, 203, 241), rgba(0, 42, 137));
  background-image: url('../img/login-background.jpeg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 1200px;
}

body {
  height: 100%;
  background: repeating-linear-gradient(rgba(2, 203, 241, 0.88), rgba(0, 42, 137, 0.88));
  font-family: 'Open Sans', sans-serif;
}

div#app,
main {
  height: 100%;
}

.container,
.row {
  height: 100%;
}

.login-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-wrapper .logo {
  width: 170px;
  height: 170px;
  margin: 0 auto;
  background-image: url('../img/new-logo.png');
  background-size: 165px 165px;
  background-repeat: no-repeat;
  /*filter: brightness(0) invert(1);*/
  background-position: center;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
}

.login-wrapper h1 {
  margin: 30px auto 40px;
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  line-height: 42px;
}

.login-wrapper form {
  color: white;
}

.login-wrapper form .form-group input.form-control {
  background: transparent;
  color: #FFFFFF;
}

.login-wrapper form .form-group input.form-control::-webkit-input-placeholder,
.login-wrapper form .form-group input.form-control:-moz-placeholder,
.login-wrapper form .form-group input.form-control::-moz-placeholder,
.login-wrapper form .form-group input.form-control:-ms-input-placeholder {
  color: rgb(226, 226, 226);
}

.login-wrapper form .form-group input.form-control::placeholder {
  color: rgb(226, 226, 226);
  opacity: 1;
}

.login-wrapper form .form-group input.form-control:focus::-webkit-input-placeholder,
.login-wrapper form .form-group input.form-control:focus:-moz-placeholder,
.login-wrapper form .form-group input.form-control:focus::-moz-placeholder,
.login-wrapper form .form-group input.form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.login-wrapper form .form-group input.form-control:focus::placeholder {
  color: transparent;
}


.login-wrapper form .form-group.action {
  margin-top: -16px;
}

.login-wrapper form .form-group.action a {
  color: white;
  float: right;
  font-weight: bold;
  padding: 0;
  margin-bottom: 30px;
}

.login-wrapper form .form-group.action button[type="submit"] {
  width: 100%;
  background-color: #FFFFFF;
  color: #007BC3;
  font-weight: bold;
  padding: 12px 0;
  border-radius: 30px;
  border: none;
}

.login-wrapper form .form-group.action button[type="submit"]:hover {
  box-shadow: 0 0 15px 0 rgba(255, 255, 255, 0.726);
}
