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

.form-login {
  display: grid;
  width: 100%;
  max-width: 500px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.form-login__header {
  text-align: center;
  margin-bottom: 20px;

}

.form-login__header h4 {
  margin-bottom: 5px;
}

.form-login__input {
  display: grid;
  gap: 5px;
  margin-bottom: 20px;
}

.form-login__input input {
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--neutral-200);
  border: 1px solid var(--neutral-200);
  border-radius: 4px;
  box-sizing: border-box;
}

.password-container {
  position: relative;
  width: 100%;
}

.password-container input {
  width: 100%;
}

.eye-password-none,
.eye-password-solid {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.eye-password-none {
  background: url(./../../img/icons/icons/eyes/State=Close.svg);
}

.eye-password-solid {
  background: url(./../../img/icons/icons/eyes/State=Open.svg);
}

button {
  height: 45px;
  font-size: 1rem;
}

.link__a {
  display: block;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .form-login {
    padding: 15px;
    border-radius: 0;
    max-width: 100%;
    box-shadow: none;
  }

  .form-login__input input {
    height: 50px;
    font-size: 1rem;
  }

  button {
    height: 50px;
    font-size: 1rem;
  }
}