.body--login {
  font-family: "Manrope", sans-serif;
  width: 100vw;
  height: 100vh;
  background-image: url("../images/bg-login.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.body--login::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #27235f;
  opacity: 0.85;
  position: absolute;
  top: 0;
  left: 0;
}

.card--login {
  /* width: 400px; */
  border: 0;
  border-radius: 10px;
}

.card--login > .card-body {
  padding: 40px;
}

.card--login > .card-body > img {
  width: 180px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.card--login > .card-body .btn {
  font-size: 1rem;
  padding-top: 13px;
  padding-bottom: 13px;
  font-weight: 600;
  -webkit-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

@media (max-width: 575px) {
  .card-login {
    max-width: 350px;
  }
}