* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1f2937;
}

.login-card {
  width: 100%;
  max-width: 380px;
  padding: 2rem;
  text-align: center;
}

.eye-container {
  width: 220px;
  height: 240px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.eye-container svg {
  width: 100%;
  height: 100%;
}

.logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 0.5rem;
}

form {
  text-align: left;
}

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

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1f2937;
  background: #f9fafb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder {
  color: #9ca3af;
}

button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #0A90E8;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
  position: relative;
  z-index: 2;
}

button[type="submit"]:hover {
  background: #1668C8;
}

button[type="submit"]:disabled {
  background: #89CDF5;
  cursor: not-allowed;
}

.error-msg {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #dc2626;
  text-align: center;
  min-height: 1.25rem;
}

.error-msg.success {
  color: #16a34a;
}

.footer {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
}

.footer a:hover {
  color: #6b7280;
}
