body.page-template-templatesregister-page-template-php,
body.page-template-register-page-template {
    background: var(--tte-gradient-light);
}

.tte-auth-shell-register {
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
}

.tte-auth-shell-register .tte-auth-card {
  width: 100%;
  max-width: 1180px;
  background: #E1EAF5;
  border-radius: 34px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.tte-auth-shell-register .tte-auth-grid {
    width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    min-height: 720px;
    max-width: 1000px;
}

.tte-tier-feature-list li {
    list-style: none;
}

.tte-auth-shell-register .tte-auth-panel-form {
  padding: 32px 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tte-auth-shell-register .tte-auth-panel-visual {
  padding: 18px 18px 18px 0;
}

.tte-auth-shell-register .tte-auth-brand {
  margin-bottom: 18px;
}

.tte-auth-shell-register .tte-auth-logo {
  width: 145px;
  max-width: 100%;
  height: auto;
  display: block;
  
    margin: auto;
}

.tte-auth-shell-register .tte-auth-brand-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid #a8b0ba;
  border-radius: 999px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
}

.tte-auth-shell-register .tte-auth-content {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 6px 0 10px;
}

.tte-auth-shell-register .tte-auth-heading {
  text-align: center;
  margin-bottom: 18px;
}

.tte-auth-shell-register .tte-auth-heading h1 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.04;
    color: #111827;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.tte-auth-shell-register .tte-auth-heading p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.tte-auth-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 18px;
}

.tte-auth-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fbfaf7;
  border: 1px solid #e7e2d7;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.tte-auth-meta-tier.tte-tier-free {
  background: #eef2f7;
  color: #475569;
}

.tte-auth-meta-tier.tte-tier-silver {
  background: #eef2f7;
  color: #64748b;
}

.tte-auth-meta-tier.tte-tier-gold {
  background: rgba(245, 158, 11, 0.16);
  color: #a16207;
}

.tte-auth-meta-tier.tte-tier-platinum {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

.tte-auth-meta-tier.tte-tier-elite {
  background: rgba(124, 58, 237, 0.12);
  color: #6d28d9;
}

.tte-auth-shell-register .tte-input-group {
  margin-bottom: 16px;
}

.tte-auth-shell-register .tte-input-group label {
  display: block;
  margin-bottom: 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
}

.tte-auth-shell-register .tte-input-field {
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border: 1px solid #ece8df;
  border-radius: 999px;
  background: #fbfaf7;
  color: #111827;
  font-size: 15px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.tte-auth-shell-register .tte-input-field::placeholder {
  color: #9ca3af;
}

.tte-auth-shell-register .tte-input-field:focus {
  outline: none;
  border-color: rgba(var(--tte-primary-rgb), 0.5);
  box-shadow: 0 0 0 4px rgba(var(--tte-primary-rgb), 0.1);
  background: #fff;
}

.tte-auth-shell-register .tte-password-wrapper {
  position: relative;
}

.tte-auth-shell-register .tte-password-wrapper .tte-input-field {
  padding-right: 52px !important;
}

.tte-auth-shell-register .tte-password-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  z-index: 2;
}

.tte-auth-shell-register .tte-password-toggle:hover,
.tte-auth-shell-register .tte-password-toggle:focus {
  color: var(--tte-primary);
  outline: none;
  box-shadow: none;
}

.tte-auth-shell-register .tte-auth-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin: 6px 0 22px;
}

.tte-auth-shell-register .tte-auth-row-stack {
  flex-direction: column;
}

.tte-auth-shell-register .tte-checkbox-container {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: #667085;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.5;
}

.tte-auth-shell-register .tte-checkbox-container input[type="checkbox"] {
  display: none;
}

.tte-auth-shell-register .tte-checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 5px;
  position: relative;
  background: #fff;
  margin-top: 2px;
}

.tte-auth-shell-register .tte-checkbox-container input[type="checkbox"]:checked + .tte-checkmark {
  background: var(--tte-primary);
  border-color: var(--tte-primary);
}

.tte-auth-shell-register .tte-checkbox-container input[type="checkbox"]:checked + .tte-checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tte-auth-shell-register .tte-checkbox-container a {
  color: var(--tte-primary);
  text-decoration: none;
  font-weight: 500;
}

.tte-auth-shell-register .tte-checkbox-container a:hover {
  text-decoration: underline;
}

.tte-auth-shell-register .tte-auth-submit,
.tte-auth-shell-register .tte-btn-primary.tte-auth-submit {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 999px;
  background: var(--tte-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tte-auth-shell-register .tte-auth-submit:hover,
.tte-auth-shell-register .tte-btn-primary.tte-auth-submit:hover {
  background: var(--tte-primary-dark);
  transform: translateY(-1px);
}

.tte-auth-shell-register .tte-auth-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  color: #6b7280;
  font-size: 13px;
}

.tte-auth-shell-register .tte-auth-footer a {
  color: #374151;
  text-decoration: underline;
}

.tte-auth-shell-register .tte-auth-footer-left a {
  color: var(--tte-primary);
  font-weight: 600;
  text-decoration: none;
}

.tte-auth-shell-register .tte-auth-footer-left a:hover {
  text-decoration: underline;
}

.tte-auth-shell-register .tte-auth-visual-wrap {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 684px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(var(--tte-primary-rgb), 0.18), rgba(var(--tte-primary-rgb), 0.05));
  justify-content: center;
  align-items: center;  
}

.tte-auth-shell-register .tte-auth-visual-image {
  position: absolute;
  inset: 0;
}

.tte-auth-shell-register .tte-auth-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}

.tte-auth-shell-register .tte-auth-floating {
    position: relative;
    max-width: 90%;
    background: rgb(255 255 255 / 0%);
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
    color: #111827;
    backdrop-filter: blur(var(--tte-glass-blur));
    -webkit-backdrop-filter: blur(var(--tte-glass-blur));
    padding: 40px;
}

.tte-auth-shell-register .tte-auth-floating strong {
  display: block;
    font-size: 20px;
    margin-bottom: 6px; 
}

.tte-auth-shell-register .tte-auth-floating span {
  display: inline-block;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
    padding: 2px 10px;
    border-radius: 6px;
    color: #fff;
}

.tte-auth-shell-register .tte-auth-floating-bottom {
  left: 26px;
  bottom: 112px;
  border-top: 4px solid var(--tte-primary-dark);
}

.tte-auth-tier-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}


button.tte-tier-chip.tier-free.tte-program-active, 
.tte-auth-floating.tte-auth-tier-card.free a.tte-tier-button,
.tte-auth-floating.tte-auth-tier-card.free .tte-tier-price {
    background: var(--tte-primary);
    border-color: var(--tte-primary);
}

button.tte-tier-chip.tier-sliver.tte-program-active, 
.tte-auth-floating.tte-auth-tier-card.silver a.tte-tier-button,
.tte-auth-floating.tte-auth-tier-card.silver .tte-tier-price {
    background: #BFC5CD;
    border: #BFC5CD;
}

button.tte-tier-chip.tier-gold.tte-program-active, 
.tte-auth-floating.tte-auth-tier-card.gold a.tte-tier-button,
.tte-auth-floating.tte-auth-tier-card.gold .tte-tier-price {
    background: #D4AF37;
    border: #D4AF37;
}


button.tte-tier-chip.tier-platinum.tte-program-active, 
.tte-auth-floating.tte-auth-tier-card.platinum a.tte-tier-button,
.tte-auth-floating.tte-auth-tier-card.platinum .tte-tier-price {
    background: #90cfd1;
    border: #90cfd1;
}

a.tte-tier-button {
    padding: 10px 20px;
    margin-top: 20px;
    display: inline-block;
    border-radius: 999px;
    color: #fff;
}

.tte-tier-chip {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.88);
  color: #334155;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tte-tier-chip:hover {
  border-color: rgba(var(--tte-primary-rgb), 0.45);
}

.tte-tier-chip.tte-program-active {
  background: var(--tte-primary);
  border-color: var(--tte-primary);
  color: #fff;
}

.tte-tier-chip.tte-tier-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.tte-success-message,
.tte-error-message {
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 14px;
}

.tte-success-message {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.tte-error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.tte-error-message p,
.tte-success-message p {
  margin: 0 0 6px;
}

.tte-error-message p:last-child,
.tte-success-message p:last-child {
  margin-bottom: 0;
}

button.tte-tier-chip.tier-essential.tte-program-active,
.tte-auth-floating.tte-auth-tier-card.essential a.tte-tier-button,
.tte-auth-floating.tte-auth-tier-card.essential .tte-tier-price {
    background: #3B82F6;
    border: #3B82F6;
    color: #fff;
}

.tte-tier-chip.tier-essential:hover {
    border-color: rgba(59, 130, 246, 0.45);
    background: rgba(59, 130, 246, 0.12);
}

.tte-auth-meta-tier.tte-tier-essential {
    background: rgba(59, 130, 246, 0.12);
    color: #1D4ED8;
}

@media (max-width: 1100px) {
  .tte-auth-shell-register .tte-auth-grid {
    grid-template-columns: 1fr;
  }

  .tte-auth-shell-register .tte-auth-panel-visual {
    padding: 0 18px 18px;
  }

  .tte-auth-shell-register .tte-auth-visual-wrap {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .tte-auth-shell-register {
    padding: 18px 12px;
  }

  .tte-auth-shell-register .tte-auth-card {
    border-radius: 24px;
  }

  .tte-auth-shell-register .tte-auth-panel-form {
    padding: 24px 18px 22px;
  }

  .tte-auth-shell-register .tte-auth-content {
    max-width: 100%;
  }

  .tte-auth-shell-register .tte-auth-heading h1 {
    font-size: 34px;
  }

  .tte-auth-shell-register .tte-auth-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .tte-auth-shell-register .tte-auth-visual-wrap {
    min-height: 320px;
    border-radius: 22px;
  }

  .tte-auth-shell-register .tte-auth-tier-grid {
    position: static;
    padding: 16px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.65));
  }
}

@media (max-width: 480px) {
  .tte-auth-shell-register .tte-auth-heading h1 {
    font-size: 28px;
  }
}