/**
 * Giriş / kayıt — site kabuğu içinde kart düzeni
 */

.eg-site--auth .eg-auth-page {
  max-width: 720px;
  margin: 0 auto;
}

.eg-site--auth .eg-auth-card--login {
  max-width: 440px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 2px solid #cbd5e1;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.eg-auth-login__hero {
  padding: 28px 28px 22px;
  text-align: center;
  background: linear-gradient(145deg, #145c52 0%, #1a7a6d 55%, #2a9d8f 100%);
  color: #fff;
}

.eg-auth-login__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.eg-auth-login__hero h1 {
  margin: 0 0 8px;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.eg-auth-login__hero .eg-auth-card__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.45;
}

.eg-auth-login__body {
  padding: 24px 28px 28px;
  background: #ffffff;
}

.eg-form--login .eg-field label {
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.eg-form--login .eg-field input {
  border: 2px solid #94a3b8;
  background: #fff;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 10px;
}

.eg-form--login .eg-field input:focus {
  border-color: var(--eg-brand, #0d5c4d);
  box-shadow: 0 0 0 3px rgba(13, 92, 77, 0.18);
}

.eg-checkbox--login {
  margin: 4px 0 18px;
  color: #475569;
  font-weight: 500;
}

.eg-btn--login-submit {
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(13, 92, 77, 0.35);
}

.eg-auth-card--login .eg-auth-card__foot {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.eg-auth-card--login .eg-auth-card__foot a {
  color: var(--eg-brand, #0d5c4d);
  font-weight: 700;
  text-decoration: none;
}

.eg-auth-card--login .eg-auth-card__foot a:hover {
  text-decoration: underline;
}

.eg-site--auth .eg-auth-card--register {
  max-width: 100%;
  width: 100%;
}

.eg-site--auth .eg-register-head__top {
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  .eg-site--auth .eg-auth-page {
    max-width: none;
  }

  .eg-auth-card--login {
    border-radius: 16px;
  }

  .eg-auth-login__body {
    padding: 20px 18px 24px;
  }
}
