/* PetLove Command Center — Login Page Styles */

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #FFFFFF;
  color: #1a1a2e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: #FFFFFF;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.logo-img {
  height: 40px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}

.logo-mark {
  width: 48px; height: 48px;
  background: #FF0050;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 20px; font-weight: 700; color: #FFFFFF;
}

h1 { font-size: 22px; font-weight: 600; color: #1a1a2e; margin-bottom: 4px; }
.subtitle { font-size: 13px; color: #6c757d; margin-bottom: 32px; }

/* Magic Link Form */
.magic-form { margin-bottom: 24px; }
.input-group { display: flex; gap: 8px; margin-bottom: 12px; }

.email-input {
  flex: 1;
  padding: 14px 16px;
  background: #f8f9fa;
  color: #1a1a2e;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.2s;
}
.email-input:focus { border-color: #FF0050; box-shadow: 0 0 0 3px rgba(255,0,80,0.1); }
.email-input::placeholder { color: #adb5bd; }

.magic-btn {
  padding: 14px 24px;
  background: #000000; color: #fff; border: none;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.magic-btn:hover { background: #1a1a2e; }
.magic-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.magic-hint { font-size: 12px; color: #6c757d; line-height: 1.5; }

/* Divider */
.divider {
  display: flex; align-items: center; gap: 16px; margin: 24px 0;
  color: #adb5bd; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: #e9ecef; }

/* Google Button */
.google-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 14px 24px;
  background: #ffffff; color: #1a1a2e;
  border: 1px solid #e9ecef; border-radius: 8px;
  font-size: 15px; font-weight: 500; font-family: 'Inter', sans-serif;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.google-btn:hover { background: #f8f9fa; border-color: #FF0050; box-shadow: 0 0 0 3px rgba(255,0,80,0.1); }

.hidden { display: none !important; }

/* Messages */
.message { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 13px; display: none; }
.message.error { display: block; background: rgba(255,59,48,0.08); border: 1px solid rgba(255,59,48,0.2); color: #c0392b; }
.message.success { display: block; background: rgba(78,205,196,0.08); border: 1px solid rgba(78,205,196,0.3); color: #0d6e65; }

.footer { margin-top: 32px; font-size: 11px; color: #adb5bd; }
.footer a { color: #FF0050; text-decoration: none; }
