.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  justify-content: center;
}

.login-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px;
}

.login-header img {
  width: 250px;
}

.login-header h1 {
  color: #333;
  font-size: 1.5em;
}

.login-input {
  border: 2px solid #333;
  border-radius: 8px;
  color: #333;
  font-size: 1em;
  margin-bottom: 15px;
  width: 100%;
  max-width: 300px;
  outline: none;
  padding: 15px;
}

.login-button {
  background-color: #ee665c;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  width: 100%;
  max-width: 300px;
  border: none;
  margin-top: 10px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.login-button:hover:not(:disabled) {
  background-color: #e2554b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.login-button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.login-button:disabled {
  background-color: #eee;
  color: #aaa;
  cursor: not-allowed;
  box-shadow: none;
}