* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
}

.login-container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.login-card {
  background: #1e293b;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #334155;
}

.logo img {
  height: 60px;
  margin-bottom: 16px;
}

.logo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 8px;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  color: white;
}

.subtitle {
  color: #94a3b8;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #cbd5e1;
}

.input-field {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #475569;
  background: #0f172a;
  color: white;
  font-size: 1rem;
  transition: all 0.2s;
}

.input-field:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.3);
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

.error-msg {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  font-size: 0.9rem;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.error-msg svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-links {
  margin-top: 24px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #60a5fa;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}