@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

.auth-page {
  display: flex;
  min-height: 100vh;
  background: var(--background, #19191e);
}

/* ---- Background Image Side ---- */
.auth-bg-side {
  position: relative;
  width: 50%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.auth-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}

.auth-bg-side:hover .auth-bg-image {
  transform: scale(1.05);
}

.auth-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 25, 30, 0.4) 0%,
    rgba(25, 25, 30, 0.6) 50%,
    rgba(25, 25, 30, 0.9) 100%
  );
  z-index: 1;
}

.auth-bg-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  width: 100%;
}

.auth-bg-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 40px;
}

.auth-bg-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent, #9e1b52);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.auth-bg-logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auth-bg-logo .logo-text {
  font-family: "Lemon Milk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.auth-bg-text h2 {
  font-family: "Lemon Milk", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.auth-bg-text p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
}

/* ---- Form Side ---- */
.auth-form-side {
  width: 50%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background, #19191e);
  position: relative;
  overflow-y: auto;
}

.auth-form-wrapper {
  width: 100%;
  max-width: 480px;
  padding: 60px 40px;
}

/* ---- Mobile Logo (hidden on desktop) ---- */
.auth-mobile-logo {
  display: none;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 40px;
}

.auth-mobile-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent, #9e1b52);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.auth-mobile-logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.auth-mobile-logo .logo-text {
  font-family: "Lemon Milk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text, #ffffff);
}

/* ---- Form Header ---- */
.auth-form-header {
  margin-bottom: 36px;
}

.auth-form-header h1 {
  font-family: "Lemon Milk", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text, #ffffff);
  margin-bottom: 8px;
  line-height: 1.2;
}

.auth-form-header p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text-muted, rgba(255, 255, 255, 0.7));
  margin: 0;
}

/* ---- OAuth Buttons ---- */
.auth-oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 14px;
  background: var(--primary, #2e2c36);
  color: var(--text, #ffffff);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.oauth-btn i {
  font-size: 20px;
}

.oauth-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Patreon */
.oauth-patreon:hover {
  background: rgba(255, 66, 77, 0.15);
  border-color: rgba(255, 66, 77, 0.4);
  box-shadow: 0 8px 25px rgba(255, 66, 77, 0.15);
}

.oauth-patreon i {
  color: #ff424d;
}

/* Discord */
.oauth-discord:hover {
  background: rgba(88, 101, 242, 0.15);
  border-color: rgba(88, 101, 242, 0.4);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.15);
}

.oauth-discord i {
  color: #5865f2;
}

/* Google */
.oauth-google:hover {
  background: rgba(234, 67, 53, 0.15);
  border-color: rgba(234, 67, 53, 0.4);
  box-shadow: 0 8px 25px rgba(234, 67, 53, 0.15);
}

.oauth-google i {
  color: #ea4335;
}

/* ---- Divider ---- */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color, rgba(255, 255, 255, 0.1));
}

.auth-divider span {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--text-muted, rgba(255, 255, 255, 0.5));
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Input Groups ---- */
.auth-input-group {
  margin-bottom: 20px;
}

.auth-input-group label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text, #ffffff);
  margin-bottom: 8px;
}

.auth-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--primary, #2e2c36);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.auth-input-wrapper > i {
  position: absolute;
  left: 16px;
  font-size: 18px;
  color: var(--text-muted, rgba(255, 255, 255, 0.5));
  transition: color 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.auth-input-wrapper input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: transparent;
  border: none;
  color: var(--text, #ffffff);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  outline: none;
}

.auth-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

.auth-input-wrapper:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.auth-input-wrapper.focused,
.auth-input-wrapper:focus-within {
  border-color: var(--accent, #9e1b52);
  box-shadow: 0 0 0 3px rgba(158, 27, 82, 0.15);
}

.auth-input-wrapper.focused > i,
.auth-input-wrapper:focus-within > i {
  color: var(--accent, #9e1b52);
}

.auth-input-wrapper.error {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
}

/* Password Toggle */
.password-toggle {
  position: absolute;
  right: 4px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-muted, rgba(255, 255, 255, 0.5));
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1;
}

.password-toggle:hover {
  color: var(--text, #ffffff);
}

/* ---- Auth Options (remember / forgot) ---- */
.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-muted, rgba(255, 255, 255, 0.7));
  position: relative;
  user-select: none;
}

.auth-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
}

.auth-checkbox .checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--border-color, rgba(255, 255, 255, 0.2));
  border-radius: 6px;
  background: var(--primary, #2e2c36);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.auth-checkbox .checkmark::after {
  content: "";
  display: none;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.auth-checkbox input:checked ~ .checkmark {
  background: var(--accent, #9e1b52);
  border-color: var(--accent, #9e1b52);
}

.auth-checkbox input:checked ~ .checkmark::after {
  display: block;
}

.auth-forgot {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent, #9e1b52);
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth-forgot:hover {
  color: var(--accent-hover, #b82262);
}

.terms-link {
  color: var(--accent, #9e1b52);
  text-decoration: none;
  font-weight: 500;
}

.terms-link:hover {
  color: var(--accent-hover, #b82262);
  text-decoration: underline;
}

/* ---- Submit Button ---- */
.auth-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: var(--accent, #9e1b52);
  border: none;
  border-radius: 14px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.auth-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.auth-submit-btn:hover {
  background: var(--accent-hover, #b82262);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(158, 27, 82, 0.4);
}

.auth-submit-btn:hover::before {
  left: 100%;
}

.auth-submit-btn:active {
  transform: translateY(0);
}

/* ---- Footer Text ---- */
.auth-footer-text {
  text-align: center;
  margin-bottom: 20px;
}

.auth-footer-text p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--text-muted, rgba(255, 255, 255, 0.7));
  margin: 0;
}

.auth-footer-text a {
  color: var(--accent, #9e1b52);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth-footer-text a:hover {
  color: var(--accent-hover, #b82262);
}

/* ---- Back Link ---- */
.auth-back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted, rgba(255, 255, 255, 0.5));
  text-decoration: none;
  transition: all 0.3s ease;
}

.auth-back-link:hover {
  color: var(--text, #ffffff);
}

.auth-back-link:hover i {
  transform: translateX(-4px);
}

.auth-back-link i {
  transition: transform 0.3s ease;
}

/* ========================================
   RESPONSIVE
======================================== */

/* Tablet */
@media only screen and (max-width: 1200px) {
  .auth-bg-text h2 {
    font-size: 36px;
  }

  .auth-form-wrapper {
    max-width: 440px;
    padding: 50px 32px;
  }

  .auth-form-header h1 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 991.98px) {
  .auth-page {
    flex-direction: column;
  }

  .auth-bg-side {
    width: 100%;
    min-height: 300px;
    max-height: 350px;
  }

  .auth-bg-content {
    padding: 30px;
  }

  .auth-bg-text h2 {
    font-size: 28px;
  }

  .auth-bg-text p {
    font-size: 15px;
  }

  .auth-form-side {
    width: 100%;
    min-height: auto;
  }

  .auth-form-wrapper {
    max-width: 520px;
    padding: 40px 30px;
  }

  .auth-mobile-logo {
    display: none;
  }
}

/* Mobile */
@media only screen and (max-width: 767.98px) {
  .auth-bg-side {
    display: none;
  }

  .auth-form-side {
    width: 100%;
    min-height: 100vh;
  }

  .auth-mobile-logo {
    display: flex;
  }

  .auth-form-wrapper {
    max-width: 100%;
    padding: 40px 24px;
  }

  .auth-form-header h1 {
    font-size: 28px;
  }

  .auth-form-header p {
    font-size: 14px;
  }

  .oauth-btn {
    padding: 13px 16px;
    font-size: 14px;
    border-radius: 12px;
  }

  .auth-input-wrapper {
    border-radius: 12px;
  }

  .auth-input-wrapper input {
    padding: 14px 14px 14px 44px;
    font-size: 14px;
  }

  .auth-submit-btn {
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 15px;
  }

  .auth-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media only screen and (max-width: 575.98px) {
  .auth-form-wrapper {
    padding: 32px 20px;
  }

  .auth-form-header h1 {
    font-size: 24px;
  }

  .auth-oauth-buttons {
    gap: 10px;
  }

  .oauth-btn span {
    font-size: 13px;
  }
}

.btn-login,
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-login {
  color: var(--text, #ffffff);
  background: transparent;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.15));
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-register {
  color: #ffffff;
  background: var(--accent, #9e1b52);
  border: 1px solid var(--accent, #9e1b52);
}

.btn-register:hover {
  background: var(--accent-hover, #b82262);
  border-color: var(--accent-hover, #b82262);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(158, 27, 82, 0.35);
  color: #ffffff;
}

.btn-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  background: var(--accent, #9e1b52);
  border: 1px solid var(--accent, #9e1b52);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-account:hover {
  background: var(--accent-hover, #b82262);
  border-color: var(--accent-hover, #b82262);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(158, 27, 82, 0.35);
  color: #ffffff;
}

.btn-account i,
.btn-login i,
.btn-register i {
  font-size: 16px;
}

.btn-login-mobile,
.btn-register-mobile,
.btn-account-mobile,
.btn-logout-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.btn-login-mobile {
  color: var(--text, #ffffff);
  background: transparent;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.15));
  margin-bottom: 10px;
}

.btn-login-mobile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-register-mobile {
  color: #ffffff;
  background: var(--accent, #9e1b52);
  border: 1px solid var(--accent, #9e1b52);
}

.btn-register-mobile:hover {
  background: var(--accent-hover, #b82262);
  color: #ffffff;
}

.btn-account-mobile {
  color: #ffffff;
  background: var(--accent, #9e1b52);
  border: 1px solid var(--accent, #9e1b52);
  margin-bottom: 10px;
}

.btn-account-mobile:hover {
  background: var(--accent-hover, #b82262);
  color: #ffffff;
}

.btn-logout-mobile {
  color: var(--text-muted, rgba(255, 255, 255, 0.7));
  background: transparent;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.15));
}

.btn-logout-mobile:hover {
  color: #ff4d4d;
  border-color: rgba(255, 77, 77, 0.4);
  background: rgba(255, 77, 77, 0.08);
}

.flash-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  animation: flashSlideIn 0.3s ease;
}

.flash-message i {
  font-size: 18px;
  flex-shrink: 0;
}

.flash-message .flash-close {
  margin-left: auto;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  padding: 0;
  font-size: 16px;
}

.flash-message .flash-close:hover {
  opacity: 1;
}

.flash-error {
  background: rgba(255, 77, 77, 0.12);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #ff6b6b;
}

.flash-success {
  background: rgba(46, 213, 115, 0.12);
  border: 1px solid rgba(46, 213, 115, 0.3);
  color: #2ed573;
}

.flash-info {
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: #5865f2;
}

@keyframes flashSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.registration-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon-wrap {
  margin-bottom: 32px;
}

.success-icon-wrap i {
  font-size: 80px;
  color: #2ed573;
  animation: successPulse 2s ease infinite;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(46, 213, 115, 0));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(46, 213, 115, 0.3));
  }
}

.registration-success h1 {
  font-family: "Lemon Milk", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text, #ffffff);
  margin-bottom: 12px;
}

.registration-success p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--text-muted, rgba(255, 255, 255, 0.7));
  line-height: 1.7;
  margin-bottom: 40px;
}

.registration-success p strong {
  color: var(--accent, #9e1b52);
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.success-actions .auth-submit-btn {
  text-decoration: none;
  margin-bottom: 0;
}

.success-actions .btn-outline {
  background: transparent;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.15));
  color: var(--text, #ffffff);
}

.success-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  transform: translateY(-2px);
}

.profile-section {
  padding: 80px 0 120px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.profile-info-card,
.profile-edit-card {
  background: var(--primary, #2e2c36);
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
  border-radius: 20px;
  padding: 36px;
}

.profile-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent, #9e1b52) 0%, #b82262 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.profile-avatar i {
  font-size: 44px;
  color: #ffffff;
}

.profile-details h2 {
  font-family: "Lemon Milk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text, #ffffff);
  margin-bottom: 6px;
}

.profile-username {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--accent, #9e1b52);
  margin-bottom: 4px;
}

.profile-email {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-muted, rgba(255, 255, 255, 0.5));
  margin-bottom: 24px;
}

.btn-profile-logout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-muted, rgba(255, 255, 255, 0.6));
  background: transparent;
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-profile-logout:hover {
  color: #ff4d4d;
  border-color: rgba(255, 77, 77, 0.4);
  background: rgba(255, 77, 77, 0.08);
}

.profile-edit-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text, #ffffff);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-edit-card h3 i {
  color: var(--accent, #9e1b52);
}

.profile-form .auth-submit-btn {
  margin-bottom: 0;
  margin-top: 8px;
}

@media only screen and (max-width: 767.98px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-section {
    padding: 50px 0 80px;
  }

  .registration-success h1 {
    font-size: 28px;
  }

  .success-icon-wrap i {
    font-size: 60px;
  }

  .btn-login span,
  .btn-register span {
    display: none;
  }

  .btn-login,
  .btn-register,
  .btn-account {
    padding: 8px 12px;
  }
}

@media only screen and (max-width: 575.98px) {
  .profile-info-card,
  .profile-edit-card {
    padding: 28px 20px;
  }
}

/* ========================================
   NAV AUTH LINKS (inside nav-list pill)
======================================== */
.nav-link.nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  border-left: 1px solid var(--border-color);
  margin-left: 4px;
  padding-left: 20px;
}

.nav-link.nav-auth:hover {
  color: var(--text);
}

.nav-link.nav-auth i {
  font-size: 14px;
}

.nav-link.nav-auth-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
}

.nav-link.nav-auth-accent:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(158, 27, 82, 0.35);
}

.nav-link.nav-auth-accent i {
  font-size: 14px;
}
