.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
}

.login-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 2rem;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h1 {
  font-size: 1.875rem;
  font-weight: bold;
  background: linear-gradient(45deg, var(--cosmic-white), var(--cosmic-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: rgba(255, 255, 255, 0.9);
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cosmic-gold);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--cosmic-white);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-input:focus {
  outline: none;
  border-color: var(--cosmic-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-red));
  color: var(--cosmic-white);
  font-weight: 600;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(83, 52, 131, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--cosmic-red), var(--cosmic-purple));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(83, 52, 131, 0.5);
}

.signup-link {
  margin-top: 1.5rem;
  text-align: center;
}

.signup-link p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.signup-link a {
  color: var(--cosmic-gold);
  font-weight: 500;
  text-decoration: none;
}

.signup-link a:hover {
  color: var(--cosmic-red);
}

.forgot-password-link {
  text-align: center;
  margin-top: 1rem;
}

.forgot-password-link a {
  color: var(--cosmic-gold);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.forgot-password-link a:hover {
  color: var(--cosmic-red);
  text-decoration: underline;
} 