/* Manager Login - Üyelik Merkezi Giriş */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:focus { outline: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fafbfc;
  color: #0f172a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  -webkit-font-smoothing: antialiased;
}

.login-area {
  width: 100%;
  max-width: 380px;
}

.login-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  border: 1px solid #e2e8f0;
}

.login-logo {
  display: block;
  margin-bottom: 24px;
  text-align: center;
}
.login-logo img {
  max-width: 140px;
  height: auto;
}

.login-title {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: center;
}

.login-form .field {
  margin-bottom: 16px;
}
.login-form label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 5px;
}
.login-form input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s;
}
.login-form input:focus {
  outline: 0;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2,132,199,0.1);
}
.login-form input::placeholder {
  color: #9ca3af;
}

.login-captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.login-captcha > label {
  width: 100%;
  margin-bottom: 2px;
}
.login-captcha .question {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin: 0;
}
.login-captcha input {
  width: 64px;
  padding: 11px 12px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.login-btn {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.15s;
}
.login-btn:hover:not(:disabled) {
  background: #1d4ed8;
}
.login-btn:disabled {
  background: #93c5fd;
  cursor: not-allowed;
}

.login-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.login-forgot, .login-email-link {
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
}
.login-forgot:hover, .login-email-link:hover {
  color: #0f172a;
}
.login-email-link[data-locked="1"] {
  color: #9ca3af;
  cursor: not-allowed;
}
.login-email-link[data-locked="1"]:hover {
  color: #9ca3af;
}
.login-sep {
  color: #d1d5db;
  font-size: 12px;
}

.login-error {
  font-size: 12px;
  color: #dc2626;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: #fef2f2;
  border-radius: 8px;
}

.login-locked {
  text-align: center;
  padding: 20px;
}
.login-locked .lock-title {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}
.login-locked .lock-msg {
  font-size: 13px;
  color: #6b7280;
}
.login-email-alt {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  color: #2563eb;
  cursor: pointer;
}
.login-email-alt:hover {
  color: #1d4ed8;
}

.login-trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}
.login-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}
.login-trust-note svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.login-trust-ip {
  margin-top: 6px;
  font-size: 11px;
  color: #9ca3af;
}

@media (max-width: 480px) {
  .login-card {
    padding: 28px 24px;
  }
}
