/* ════════════════════════════════════════════════════════════════════════════
   MODERN AUTH STYLES - Login & Onboarding
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Root Variables ────────────────────────────────────────────────────────── */
:root {
  --auth-primary: #4f46e5;
  --auth-primary-dark: #4338ca;
  --auth-primary-light: #818cf8;
  --auth-gradient-start: #667eea;
  --auth-gradient-end: #764ba2;
  --auth-success: #10b981;
  --auth-error: #ef4444;
  --auth-warning: #f59e0b;
  --auth-bg: #f8fafc;
  --auth-card-bg: #ffffff;
  --auth-text: #1e293b;
  --auth-text-muted: #64748b;
  --auth-border: #e2e8f0;
  --auth-input-bg: #ffffff;
  --auth-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --auth-radius: 16px;
  --auth-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode */
[data-theme="dark"] {
  --auth-bg: #0f172a;
  --auth-card-bg: #1e293b;
  --auth-text: #f1f5f9;
  --auth-text-muted: #94a3b8;
  --auth-border: #334155;
  --auth-input-bg: #1e293b;
}

/* ── Auth Layout Shell ─────────────────────────────────────────────────────── */
.auth-shell {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

/* ── Left Branding Panel ───────────────────────────────────────────────────── */
.auth-panel-left {
  flex: 0 0 45%;
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 45%, #4c1d95 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.auth-panel-left::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(129, 140, 248, 0.12);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.auth-panel-left::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(167, 139, 250, 0.1);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.auth-left-top {
  position: relative;
  z-index: 1;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.auth-logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(129, 140, 248, 0.4);
}

.auth-logo-text strong {
  display: block;
  color: #f1f5f9;
  font-size: 1.25rem;
  font-weight: 700;
}

.auth-logo-text small {
  color: rgba(199, 210, 254, 0.65);
  font-size: 0.8rem;
}

.auth-left-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.auth-headline {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.auth-headline span {
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-tagline {
  color: rgba(199, 210, 254, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.auth-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(129, 140, 248, 0.15);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #a5b4fc;
  flex-shrink: 0;
}

.auth-feature-text {
  font-size: 0.95rem;
  color: rgba(199, 210, 254, 0.85);
  font-weight: 500;
}

.auth-left-foot {
  position: relative;
  z-index: 1;
}

.auth-left-foot p {
  font-size: 0.85rem;
  color: rgba(199, 210, 254, 0.45);
}

/* ── Right Form Panel ──────────────────────────────────────────────────────── */
.auth-panel-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--auth-bg);
  padding: 2rem;
  position: relative;
}

.auth-panel-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--auth-border) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.auth-form-box {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
}

/* ── Login Card ────────────────────────────────────────────────────────────── */
.login-card {
  background: var(--auth-card-bg);
  border-radius: var(--auth-radius);
  box-shadow: var(--auth-shadow);
  overflow: hidden;
}

.login-header {
  text-align: center;
  padding: 2.5rem 2rem 2rem;
}

.login-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--auth-gradient-start), var(--auth-gradient-end));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.login-logo i {
  font-size: 1.75rem;
  color: white;
}

.login-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--auth-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.login-subtitle {
  color: var(--auth-text-muted);
  font-size: 0.95rem;
}

.login-body {
  padding: 0 2rem 2rem;
}

/* ── Form Elements ─────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--auth-text);
  margin-bottom: 0.5rem;
}

.form-group label .required {
  color: var(--auth-error);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--auth-input-bg);
  border: 2px solid var(--auth-border);
  border-radius: 12px;
  transition: all var(--auth-transition);
  overflow: hidden;
}

.input-wrap:hover {
  border-color: #cbd5e1;
}

.input-wrap.focused {
  border-color: var(--auth-primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.input-wrap.has-error {
  border-color: var(--auth-error);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.input-wrap.success {
  border-color: var(--auth-success);
}

.input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  color: var(--auth-text-muted);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: color var(--auth-transition);
}

.input-wrap.focused .input-icon {
  color: var(--auth-primary);
}

.input-wrap .form-control {
  flex: 1;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0.875rem 1rem 0.875rem 0;
  font-size: 0.95rem;
  color: var(--auth-text);
  background: transparent;
  min-height: 48px;
}

.input-wrap .form-control::placeholder {
  color: #94a3b8;
}

.input-wrap select.form-control {
  cursor: pointer;
  padding-left: 0 !important;
}

.password-toggle {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--auth-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: color var(--auth-transition);
  flex-shrink: 0;
}

.password-toggle:hover {
  color: var(--auth-primary);
}

.error-text {
  font-size: 0.8rem;
  color: var(--auth-error);
  margin-top: 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.error-text:empty {
  display: none;
}

.error-text:not(:empty)::before {
  content: "\F33C";
  font-family: "bootstrap-icons";
  font-size: 0.85rem;
}

/* ── Validation Summary ────────────────────────────────────────────────────── */
.validation-summary {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--auth-error);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.validation-summary i {
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Form Options ──────────────────────────────────────────────────────────── */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid var(--auth-border);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"]:checked {
  background-color: var(--auth-primary);
  border-color: var(--auth-primary);
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--auth-text-muted);
  cursor: pointer;
}

.forgot-link, .forgot-password {
  font-size: 0.875rem;
  color: var(--auth-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--auth-transition);
}

.forgot-link:hover, .forgot-password:hover {
  color: var(--auth-primary-dark);
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-login, .btn-primary {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--auth-gradient-start), var(--auth-gradient-end));
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--auth-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-login:hover:not(:disabled), .btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(102, 126, 234, 0.45);
}

.btn-login:active:not(:disabled), .btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-login:disabled, .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  width: auto;
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 2px solid var(--auth-border);
  border-radius: 12px;
  color: var(--auth-text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--auth-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--auth-primary);
  background: rgba(79, 70, 229, 0.05);
}

/* ── Divider ──────────────────────────────────────────────────────────────── */
.divider-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--auth-text-muted);
  font-size: 0.85rem;
  margin: 1.5rem 0;
}

.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--auth-border);
}

/* ── Social Buttons ────────────────────────────────────────────────────────── */
.social-buttons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-social {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid var(--auth-border);
  border-radius: 10px;
  background: var(--auth-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--auth-transition);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--auth-text);
}

.btn-social:hover {
  border-color: var(--auth-primary);
  background: rgba(79, 70, 229, 0.05);
}

/* ── Login Footer ──────────────────────────────────────────────────────────── */
.login-footer {
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(241, 245, 249, 0.5);
  border-top: 1px solid var(--auth-border);
}

[data-theme="dark"] .login-footer {
  background: rgba(30, 41, 59, 0.5);
}

.login-footer p, .signup-link p, .form-footer p {
  font-size: 0.9rem;
  color: var(--auth-text-muted);
  margin: 0;
}

.login-footer a, .signup-link a, .form-footer a {
  color: var(--auth-primary);
  text-decoration: none;
  font-weight: 600;
}

.login-footer a:hover, .signup-link a:hover, .form-footer a:hover {
  text-decoration: underline;
}

/* ── Spinner ───────────────────────────────────────────────────────────────── */
.spinner-sm {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Dark Mode Toggle ──────────────────────────────────────────────────────── */
.dark-mode-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--auth-border);
  background: var(--auth-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--auth-text-muted);
  transition: all var(--auth-transition);
  z-index: 100;
}

.dark-mode-toggle:hover {
  border-color: var(--auth-primary);
  color: var(--auth-primary);
}

/* ════════════════════════════════════════════════════════════════════════════
   ONBOARDING STYLES
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Onboard Container ─────────────────────────────────────────────────────── */
.onboard-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  background: var(--auth-bg);
  position: relative;
}

.onboard-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--auth-border) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.onboard-box {
  width: 100%;
  max-width: 600px;
  background: var(--auth-card-bg);
  border-radius: var(--auth-radius);
  box-shadow: var(--auth-shadow);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* ── Onboard Header ────────────────────────────────────────────────────────── */
.onboard-header {
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--auth-border);
}

.onboard-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--auth-gradient-start), var(--auth-gradient-end));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.onboard-logo i {
  font-size: 1.75rem;
  color: white;
}

.onboard-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--auth-text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.onboard-header p {
  color: var(--auth-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ── Stepper ───────────────────────────────────────────────────────────────── */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: rgba(241, 245, 249, 0.5);
  border-bottom: 1px solid var(--auth-border);
}

[data-theme="dark"] .stepper {
  background: rgba(30, 41, 59, 0.5);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--auth-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--auth-text-muted);
  transition: all var(--auth-transition);
  position: relative;
}

.step.active .step-circle {
  background: linear-gradient(135deg, var(--auth-gradient-start), var(--auth-gradient-end));
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.step.completed .step-circle {
  background: var(--auth-success);
  color: white;
}

.step-check {
  display: none;
}

.step.completed .step-check {
  display: block;
}

.step.completed .step-number {
  display: none;
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--auth-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step.active .step-label {
  color: var(--auth-primary);
}

.step.completed .step-label {
  color: var(--auth-success);
}

.step-line {
  width: 60px;
  height: 2px;
  background: var(--auth-border);
  margin: 0 0.75rem;
  margin-bottom: 1.75rem;
}

/* ── Form Steps ────────────────────────────────────────────────────────────── */
#onboardForm {
  padding: 2rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  margin-bottom: 1.5rem;
}

.step-title h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--auth-text);
  margin: 0 0 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-title h2 i {
  color: var(--auth-primary);
}

.step-title p {
  color: var(--auth-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ── Password Strength ─────────────────────────────────────────────────────── */
.password-strength {
  height: 4px;
  background: var(--auth-border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.password-strength-bar {
  height: 100%;
  width: 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.password-hint {
  font-size: 0.8rem;
  color: var(--auth-text-muted);
  margin-top: 0.375rem;
  display: block;
}

/* ── Form Navigation ───────────────────────────────────────────────────────── */
.form-navigation {
  display: flex;
  gap: 0.75rem;
  padding: 0 2rem 2rem;
}

.form-navigation .btn-primary,
.form-navigation .btn-secondary {
  flex: 1;
}

.form-navigation .btn-secondary {
  flex: 0 0 auto;
  width: auto;
  min-width: 100px;
}

/* ── Form Footer ───────────────────────────────────────────────────────────── */
.form-footer {
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--auth-border);
  background: rgba(241, 245, 249, 0.5);
}

[data-theme="dark"] .form-footer {
  background: rgba(30, 41, 59, 0.5);
}

/* ── Success Modal ─────────────────────────────────────────────────────────── */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.success-modal.active {
  display: flex;
}

.success-content {
  background: var(--auth-card-bg);
  border-radius: var(--auth-radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--auth-success), #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.success-icon i {
  font-size: 2.5rem;
  color: white;
}

.success-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--auth-text);
  margin: 0 0 0.75rem;
}

.success-content p {
  color: var(--auth-text-muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}

.success-content .btn-primary {
  width: auto;
  padding: 0.875rem 2rem;
  display: inline-flex;
}

/* ── Loading Overlay ───────────────────────────────────────────────────────── */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.loading-overlay.active {
  display: flex;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(129, 140, 248, 0.2);
  border-top-color: var(--auth-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-overlay p {
  color: var(--auth-text-muted);
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ════════════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .auth-panel-left {
    flex: 0 0 40%;
    padding: 2rem;
  }

  .auth-headline {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .auth-shell {
    flex-direction: column;
  }

  .auth-panel-left {
    flex: 0 0 auto;
    padding: 1.5rem;
  }

  .auth-panel-left::before,
  .auth-panel-left::after {
    display: none;
  }

  .auth-headline {
    font-size: 1.5rem;
  }

  .auth-tagline {
    display: none;
  }

  .auth-feature {
    display: none;
  }

  .auth-panel-right {
    align-items: flex-start;
    padding: 1.5rem;
  }

  .auth-form-box {
    max-width: 100%;
  }

  .login-header {
    padding: 1.5rem 1.5rem 1.25rem;
  }

  .login-body {
    padding: 0 1.5rem 1.5rem;
  }

  .login-footer {
    padding: 1.25rem 1.5rem;
  }

  .social-buttons {
    flex-direction: column;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .stepper {
    padding: 1rem;
  }

  .step-line {
    width: 30px;
  }

  .step-label {
    display: none;
  }

  #onboardForm {
    padding: 1.5rem;
  }

  .form-navigation {
    padding: 0 1.5rem 1.5rem;
    flex-direction: column;
  }

  .form-navigation .btn-secondary {
    order: 2;
    width: 100%;
  }

  .form-footer {
    padding: 1.25rem 1.5rem;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .login-title {
    font-size: 1.5rem;
  }

  .onboard-header h1 {
    font-size: 1.25rem;
  }

  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .dark-mode-toggle {
    top: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
  }
}
