/* ============================================================
   AUTH REDESIGN v2 â€” Login & Register Pages
   Scoped via body.auth-page
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* â”€â”€ Page Background â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page {
  background-color: #383b50 !important;
  background-image: url('https://www.oyuncusatis.com/assets/dist/img/epin-pattern.png') !important;
  background-attachment: fixed !important;
  background-position: center top !important;
  background-repeat: repeat !important;
  background-size: auto !important;
  background-blend-mode: multiply !important;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Hide snowflakes on auth pages */
body.auth-page .snowflakes,
body.auth-page .snowflake {
  display: none !important;
}

/* â”€â”€ Main section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page section.main {
  padding: 40px 0 60px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOGIN PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Login Wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-login-wrapper {
  max-width: 440px;
  margin: 0 auto;
}

/* â”€â”€ Auth Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-card {
  background: #13131f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

/* â”€â”€ Title â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-card-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 24px 0;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* â”€â”€ Social Login Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

body.auth-page .auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
  text-decoration: none !important;
}

body.auth-page .auth-social-btn:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
  text-decoration: none !important;
}

body.auth-page .auth-social-btn svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

body.auth-page .auth-social-btn.social-google { background: #ea4335; }
body.auth-page .auth-social-btn.social-facebook { background: #1877f2; }
body.auth-page .auth-social-btn.social-discord { background: #5865f2; }
body.auth-page .auth-social-btn.social-steam { background: #1b2838; }

/* â”€â”€ Register: Google full-width top row â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-social-google-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  width: 100%;
  border-radius: 12px;
  border: none;
  background: #ea4335;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
  margin-bottom: 10px;
  text-decoration: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body.auth-page .auth-social-google-full:hover {
  filter: brightness(1.15);
  transform: scale(1.01);
  text-decoration: none !important;
  color: #fff;
}

body.auth-page .auth-social-google-full svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

body.auth-page .auth-social-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

body.auth-page .auth-social-row-3 .auth-social-btn {
  height: 48px;
}

/* â”€â”€ "veya" Divider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

body.auth-page .auth-divider::before,
body.auth-page .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

body.auth-page .auth-divider span {
  color: #6b6b80;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* â”€â”€ Labels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-label {
  display: block;
  color: #a0a0b0;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* â”€â”€ Input Fields â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-input {
  width: 100%;
  background: #1a1a2e !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  box-sizing: border-box;
}

body.auth-page .auth-input::placeholder {
  color: rgba(255,255,255,0.3) !important;
}

body.auth-page .auth-input:focus {
  border-color: #545873 !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15) !important;
}

/* Password wrapper with eye icon */
body.auth-page .auth-password-wrap {
  position: relative;
}

body.auth-page .auth-password-wrap .auth-input {
  padding-right: 44px !important;
}

body.auth-page .auth-eye-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

body.auth-page .auth-eye-toggle:hover {
  color: rgba(255,255,255,0.7);
}

/* â”€â”€ Form Group â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-form-group {
  margin-bottom: 8px;
}

/* â”€â”€ Forgot Links Row â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-forgot-row {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}

body.auth-page .auth-forgot-link {
  color: #757a9e !important;
  font-size: 11px !important;
  text-decoration: none !important;
  transition: color 0.2s;
  font-weight: 500;
}

body.auth-page .auth-forgot-link:hover {
  color: #c4b5fd !important;
  text-decoration: underline !important;
}

/* â”€â”€ Submit Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-submit-btn {
  width: 100%;
  background: #3b82f6 !important;
  border: none !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

body.auth-page .auth-submit-btn:hover {
  background: #2563eb !important;
  transform: translateY(-1px);
}

body.auth-page .auth-submit-btn:active {
  transform: translateY(0);
}

/* â”€â”€ Bottom Link â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-bottom-text {
  text-align: center;
  margin-top: 24px;
  color: #6b6b80;
  font-size: 13px;
}

body.auth-page .auth-bottom-link {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

body.auth-page .auth-bottom-link:hover {
  color: #3b82f6 !important;
  text-decoration: underline !important;
}

/* â”€â”€ Error Messages â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-alert-danger {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 10px;
  color: #fca5a5;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.5;
}

body.auth-page .auth-alert-danger::before {
  content: "âš ï¸ ";
}

body.auth-page .auth-alert-danger ul {
  color: #fca5a5;
  margin: 0;
  padding-left: 16px;
}

/* â”€â”€ Success Messages â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-alert-success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px;
  color: #86efac;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
}

body.auth-page .auth-alert-success::before {
  content: "âœ… ";
}

/* â”€â”€ Info Messages â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-alert-info {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 10px;
  color: #c4b5fd;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
}

/* â”€â”€ Helper / Muted â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-helper-text {
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-style: italic;
  margin-top: 4px;
}

/* â”€â”€ reCAPTCHA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-captcha-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REGISTER PAGE â€” Two Column Layout
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
body.auth-page .auth-register-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

/* Form fields in 2-col grid */
body.auth-page .auth-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

body.auth-page .auth-fields-grid .auth-form-group.full-width {
  grid-column: 1 / -1;
}

/* Şifre alanları yan yana — her biri tam sütun alır */
body.auth-page .auth-fields-grid .auth-form-group.auth-password-col {
  grid-column: span 1;
}

/* â”€â”€ Custom Checkbox â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .auth-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

body.auth-page .auth-checkbox-wrap input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  background: #1a1a2e;
  cursor: pointer;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}

body.auth-page .auth-checkbox-wrap input[type="checkbox"]:checked {
  background: #545873;
  border-color: #545873;
}

body.auth-page .auth-checkbox-wrap input[type="checkbox"]:checked::after {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

body.auth-page .auth-checkbox-label {
  color: #a0a0b0;
  font-size: 13px;
  line-height: 1.4;
}

body.auth-page .auth-checkbox-label a {
  color: #757a9e !important;
  text-decoration: none !important;
  font-weight: 600;
}

body.auth-page .auth-checkbox-label a:hover {
  text-decoration: underline !important;
  color: #c4b5fd !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRUST / RATING PANEL  (Right side of register)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
body.auth-page .auth-trust-panel {
  background: #13131f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
}

/* â”€â”€ Rating Overview Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .trust-rating-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

body.auth-page .trust-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
}

body.auth-page .trust-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

body.auth-page .trust-box-label {
  color: #6b6b80;
  font-size: 11px;
  font-weight: 500;
}

body.auth-page .trust-box-link {
  color: #757a9e !important;
  font-size: 11px;
  text-decoration: none !important;
  font-weight: 600;
}

body.auth-page .trust-box-link:hover {
  color: #c4b5fd !important;
}

/* Score */
body.auth-page .trust-score {
  color: #f59e0b;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body.auth-page .trust-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

body.auth-page .trust-review-count {
  color: #6b6b80;
  font-size: 11px;
  margin-bottom: 10px;
}

/* Badges */
body.auth-page .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.auth-page .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  color: #a0a0b0;
  font-weight: 500;
}

body.auth-page .trust-badge .dot-green {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

body.auth-page .trust-badge .dot-blue {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3b82f6;
}

/* â”€â”€ Rating Bars â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .trust-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

body.auth-page .trust-bar-label {
  color: #a0a0b0;
  font-size: 12px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

body.auth-page .trust-bar-track {
  flex: 1;
  height: 6px;
  background: #1a1a2e;
  border-radius: 4px;
  overflow: hidden;
}

body.auth-page .trust-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #06b6d4, #545873);
  transition: width 0.6s ease;
}

body.auth-page .trust-bar-count {
  color: #6b6b80;
  font-size: 11px;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* â”€â”€ Why Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .trust-why-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

body.auth-page .trust-why-text {
  color: #8b8ba0;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* â”€â”€ Reviews Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .trust-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

body.auth-page .trust-reviews-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
}

body.auth-page .trust-review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}

body.auth-page .trust-review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

body.auth-page .trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

body.auth-page .trust-avatar.av-blue { background: #3b82f6; }
body.auth-page .trust-avatar.av-purple { background: #545873; }
body.auth-page .trust-avatar.av-cyan { background: #06b6d4; }
body.auth-page .trust-avatar.av-pink { background: #ec4899; }

body.auth-page .trust-review-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 13px;
}

body.auth-page .trust-review-score {
  color: #f59e0b;
  font-size: 12px;
  font-weight: 600;
  margin-left: auto;
}

body.auth-page .trust-review-subtitle {
  color: #6b6b80;
  font-size: 12px;
  font-style: italic;
}

body.auth-page .trust-review-text {
  color: #8b8ba0;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.auth-page .trust-review-date {
  color: #4b4b60;
  font-size: 11px;
}

/* â”€â”€ Divider line inside trust panel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.auth-page .trust-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 20px 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  body.auth-page .auth-register-layout {
    grid-template-columns: 1fr;
  }

  body.auth-page .auth-trust-panel {
    display: none;
  }

  body.auth-page .auth-fields-grid {
    grid-template-columns: 1fr;
  }

  body.auth-page .auth-social-row {
    grid-template-columns: repeat(2, 1fr);
  }

  body.auth-page .auth-social-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  body.auth-page .auth-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  body.auth-page section.main {
    padding: 20px 0 40px;
  }
}

@media (max-width: 480px) {
  body.auth-page .auth-social-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  body.auth-page .auth-forgot-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
}

