.auth-entry-shell {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--hb-shell-radius, 30px);
  padding: var(--hb-shell-padding, 32px);
  box-shadow: var(--hb-shadow-panel, 0 24px 56px rgba(45, 30, 86, 0.14));
  color: #241a38;
  text-align: left;
}

.auth-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.auth-entry-card {
  background: #fff;
  border: 1px solid rgba(101, 69, 157, 0.1);
  border-radius: var(--hb-card-radius, 24px);
  padding: 26px;
  box-shadow: var(--hb-shadow-card, 0 18px 36px rgba(43, 29, 81, 0.08));
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.auth-entry-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--hediye-primary);
  background: rgba(101, 69, 157, 0.08);
}

.auth-entry-card h2 {
  margin: 0;
  color: #23173a;
}

.auth-entry-card p {
  margin: 0;
  color: #655b79;
  line-height: 1.75;
}

.auth-entry-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #5f5575;
}

.auth-entry-card li + li {
  margin-top: 0.35rem;
}

.auth-entry-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-shell {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(46, 23, 95, 0.12);
  max-width: 480px;
  margin: 0 auto;
}

.auth-shell h2 {
  color: #2e175f;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.auth-shell .form-label {
  color: #5b4f75;
  font-weight: 500;
}

.auth-shell .form-control {
  border-radius: 12px;
  padding: 12px 16px;
  border: 2px solid #e8e4f5;
  transition: all 0.2s ease;
}

.auth-shell .form-control:focus {
  border-color: #947ffc;
  box-shadow: 0 0 0 3px rgba(148, 127, 252, 0.15);
}

.auth-shell .btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
}

.auth-shell .auth-link {
  text-align: center;
  margin-top: 20px;
  color: #5b4f75;
}

.auth-shell .auth-link a {
  color: #65459d;
  font-weight: 600;
  text-decoration: none;
}

.auth-shell .auth-link a:hover {
  text-decoration: underline;
}

.auth-shell .form-check {
  margin-top: 15px;
}

.auth-shell .form-check-label {
  color: #5b4f75;
}

.auth-benefits {
  background: linear-gradient(135deg, #f8f6ff 0%, #ede9fe 100%);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
}

.auth-benefits h5 {
  color: #2e175f;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1rem;
}

.auth-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.auth-benefits li {
  color: #5b4f75;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-benefits li i {
  color: #10b981;
  font-size: 0.9rem;
}

.auth-alert {
  border-radius: 12px;
  border: none;
}

.auth-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.auth-verify-shell {
  max-width: 500px;
}

@media (max-width: 768px) {
  .auth-entry-shell {
    padding: var(--hb-shell-padding-sm, 22px);
    border-radius: var(--hb-shell-radius-sm, 24px);
  }

  .auth-entry-grid {
    grid-template-columns: 1fr;
  }

  .auth-entry-actions .btn {
    width: 100%;
  }

  .auth-shell {
    padding: 28px;
  }
}
