body {
  min-width: 350px;
  background: linear-gradient(to bottom, #0029519f 0%, #002951 100%);
  background-image: url("/images/bg/login.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

body .awe-overlay {
  background-color: #06498b87;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
}

.card {
  width: 440px;
  min-width: 300px;
  box-shadow: 3px 3px 4px 1px rgba(0, 0, 0, 0.5);
  padding: 10px 35px 35px 35px;
  border-radius: 2rem;
}

.card .card-body {
  padding: 0;
}

.card .card-body h1,
.card .card-body h2 {
  font-size: 1.55rem;
  font-weight: 500;
}

.card .card-body .logo img {
  height: 90px;
  width: auto;
  margin-bottom: 2rem;
}

.card .card-body input.form-control {
  border-radius: 5rem;
  border: 1px solid #ced4da;
}

.card .card-body div.recover-password a {
  text-decoration: underline;
  color: #393939;
}

.card .card-body div.recover-password a:hover {
  color: #b20000;
}

.card .card-body button.btn-submit {
  display: inline-block;
  color: #fff;
  background-color: #b20000;
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 5rem;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px !important;
  padding: 0 20px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  transition: all 0.3s linear 0s;
  cursor: pointer;
}

.card .card-body button.btn-submit:hover {
  background-color: #d80f0f;
}

@media (max-width: 500px) {
  .card {
    padding: 10px 15px 15px 15px;
  }
}

