.container-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
  background-color: antiquewhite;
}

.wrapper {
  width: 400px;
  background-color: rgb(221, 191, 151);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.7);
}

.login__header h1 {
  font-size: 25px;
  font-weight: 500;
}

.login__header img {
  width: 250px;
}

.login-form button,
.login-form input {
  width: 300px;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #999999;
}

.login-form input:focus-visible {
  outline: none;
}

.login-form button {
  margin-top: 10px;
  background-color: antiquewhite;
  cursor: pointer;
}

.login-form button:hover {
  background-color: rgb(202, 187, 166);
}