.user-login-form {
  background-color: rgba(0, 0, 0, 0.1);
  max-width: fit-content;
  margin: 5% auto;
  color: #fff;
  font-weight: 600;
  z-index: 1;
  border: 2px solid #b99d64;
  border-radius: 10px;
}

.user-login-form input {
  padding: 1%;
  color: #2c2c2c;
}

.user-login-form input:focus {
  outline: none;
  border: 2px solid #b99d64;
  border-radius: 5px;
}

.user-login-form .form-submit {
  padding: 5px 32px;
  border: none;
  background-color: #153d6c;
  color: white;
  border-radius: 4px;
}

.login-form-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 48em) {
  .user-login-form input {
    max-width: 270px;
  }
}
