/* Clean login-specific styles */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f4f4f4;
  line-height: 1.5;
  color: #2c3e50;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.login-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 360px;
  margin: 1rem;
  box-sizing: border-box;
}

.logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  height: 80px;
  width: auto;
  margin: 0 auto;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-form input {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  background: #ffffff;
}

.login-form input:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.login-form button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.login-form button:hover {
  background: #ff8533;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.15);
}

.login-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.error-message {
  color: #ff3333;
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.25rem;
  margin: 0;
}

/* Enhanced dark mode support */
@media (prefers-color-scheme: dark) {
  body {
    background: #1a1a2e;
    color: #ecf0f1;
  }

  .login-container {
    background: #22223b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .login-form input {
    background: #2c2c44;
    color: #ecf0f1;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .login-form input:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
  }

  .login-form input::placeholder {
    color: rgba(236, 240, 241, 0.6);
  }

  .login-form button {
    background: #ff6600;
  }

  .login-form button:hover {
    background: #ff8533;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
  }
}
