/*
 * Application styles. Dashboard matches sleek-ux-revive.lovable.app aesthetic.
 */

:root {
  --sidebar-bg: #f8f9fb;
  --sidebar-text: #6b7280;
  --sidebar-text-active: #1f2937;
  --sidebar-active-bg: #f3f4f6;
  --sidebar-active-text: #111827;
  --accent: #26B09F;
  --accent-hover: #20a090;
  --btn-primary-bg: #1E2024;
  --btn-primary-hover: #2d3139;
  --btn-secondary-bg: #f0f0f0;
  --btn-secondary-hover: #e5e5e5;
  --main-bg: #F8F8F8;
  --devise-bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --radius: 8px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  --font: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --icon-size: 20px;
  /* Type scale (Tailwind-aligned) */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;  /* 14px */
  --text-base: 1rem;    /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;   /* 20px */
  --text-2xl: 1.5rem;   /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  /* Line heights (Tailwind-aligned) */
  --leading-xs: 1rem;
  --leading-sm: 1.25rem;
  --leading-base: 1.5rem;
  --leading-lg: 1.75rem;
  --leading-xl: 1.75rem;
  --leading-2xl: 2rem;
  --leading-3xl: 2.25rem;
  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: var(--leading-base);
  color: var(--text);
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Dashboard layout */
.dashboard-body {
  display: flex;
  min-height: 100vh;
  background: var(--main-bg);
}

.dashboard-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 256px;
  height: 100vh;
  background: #ffffff;
  color: var(--sidebar-text);
  padding: 0;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar-header {
  flex-shrink: 0;
  padding: var(--space-6);
  border-bottom: 1px solid #e5e7eb;
  min-height: 64px;
  display: flex;
  align-items: center;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--text);
}

.sidebar-brand-logo {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--text);
  color: #fff;
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-brand-text {
  font-weight: 600;
  font-size: var(--text-lg);
  line-height: var(--leading-lg);
  letter-spacing: -0.025em;
}

.sidebar-dropdown-form {
  margin: var(--space-4) var(--space-3) var(--space-2);
}

.sidebar-dropdown-wrap {
  position: relative;
}

.sidebar-dropdown {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  color: var(--text);
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.sidebar-dropdown-wrap[open] .sidebar-dropdown {
  background: #f9fafb;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.sidebar-dropdown-wrap .sidebar-dropdown {
  list-style: none;
}

.sidebar-dropdown-wrap .sidebar-dropdown::-webkit-details-marker {
  display: none;
}

.sidebar-dropdown:hover {
  background: #f9fafb;
}

.sidebar-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: var(--space-3);
  right: var(--space-3);
  margin-top: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  z-index: 50;
  max-height: 280px;
  overflow-y: auto;
}

.sidebar-dropdown-wrap[open] .sidebar-dropdown-panel {
  display: block;
}

.sidebar-dropdown-wrap[open] .sidebar-dropdown-chevron {
  transform: rotate(180deg);
}

.sidebar-dropdown-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.1s;
}

.sidebar-dropdown-option:hover {
  background: #f3f4f6;
}

.sidebar-dropdown-option--current {
  background: #eff6ff;
  color: var(--accent);
}

.sidebar-dropdown-option .sidebar-dropdown-avatar {
  flex-shrink: 0;
}

.sidebar-dropdown-option-label {
  flex: 1;
}

.sidebar-dropdown-label {
  flex: 1;
  text-align: left;
}

.sidebar-dropdown-chevron {
  width: var(--icon-size);
  height: var(--icon-size);
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.sidebar-dropdown-avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-height: 0;
  padding: 0 var(--space-3);
  overflow-y: auto;
}

.sidebar-user {
  flex-shrink: 0;
  margin-top: auto;
  padding: var(--space-4) var(--space-3);
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.sidebar-user-initials {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(38, 176, 159, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-user-info {
  flex: 1;
  min-width: 0;
}

.sidebar-user-email {
  display: block;
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user .sidebar-signout-btn {
  margin-top: var(--space-1);
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  color: var(--text-muted);
  text-decoration: none;
}

.sidebar-user .sidebar-signout-btn:hover {
  color: var(--text);
}

.sidebar-user .button_to {
  margin-top: 4px;
}

.sidebar-user .button_to input {
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  background: none;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  width: auto;
  text-align: left;
}

.sidebar-user .button_to input:hover {
  color: #5eead4;
  background: none;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  color: var(--sidebar-text);
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  background: none;
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: color 0.15s, background 0.15s;
}

.sidebar-link svg {
  width: var(--icon-size);
  height: var(--icon-size);
  flex-shrink: 0;
  color: var(--sidebar-text);
}

.sidebar-link:hover {
  color: var(--sidebar-active-text);
  background: #f3f4f6;
}

.sidebar-link.active {
  color: var(--sidebar-active-text);
  background: var(--sidebar-active-bg);
}

.sidebar-link.active:hover {
  background: var(--sidebar-active-bg);
}

.sidebar-link.active svg,
.sidebar-link:hover svg {
  color: var(--sidebar-active-text);
}

.dashboard-content {
  flex: 1;
  margin-left: 256px;
  min-width: 0;
  min-height: 100vh;
  background: var(--main-bg);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: 56px;
  padding: 0 var(--space-6);
  background: var(--card-bg);
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.topbar-search-wrap {
  position: relative;
  flex: 1;
  max-width: 448px;
}

.topbar-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: var(--icon-size);
  height: var(--icon-size);
  color: var(--text-muted);
  pointer-events: none;
}

.topbar-search {
  width: 100%;
  height: 36px;
  padding: 0 var(--space-3) 0 40px;
  font: inherit;
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  border: 0;
  border-radius: var(--radius);
  background: #f3f4f6;
  color: var(--text);
}

.topbar-search::placeholder {
  color: var(--text-muted);
}

.topbar-icons {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.topbar-icon-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text-muted);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.topbar-icon-btn:hover {
  background: #f3f4f6;
  color: var(--text);
}

.topbar-icon-btn svg {
  width: var(--icon-size);
  height: var(--icon-size);
}

.topbar-bell-wrap {
  position: relative;
}

.topbar-bell-dot {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.topbar-divider {
  width: 1px;
  height: 24px;
  background: #e5e7eb;
  margin-left: var(--space-2);
  flex-shrink: 0;
}

.topbar-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  margin-left: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(38, 176, 159, 0.15);
  color: var(--accent);
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}

.dashboard-scroll {
  flex: 1;
  padding: var(--space-6);
  overflow: auto;
}

.dashboard-header {
  margin-bottom: var(--space-6);
}

.dashboard-header-title {
  margin: 0 0 var(--space-4);
  font-size: var(--text-2xl);
  line-height: var(--leading-2xl);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: 0;
}

.dashboard-action-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  height: 40px;
  font: inherit;
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.dashboard-action-btn svg {
  width: var(--icon-size);
  height: var(--icon-size);
  flex-shrink: 0;
}

.dashboard-action-btn.primary {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.dashboard-action-btn.primary:hover {
  background: #1f2937;
  border-color: #1f2937;
}

.dashboard-action-btn.secondary:hover {
  background: #f3f4f6;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
  width: 100%;
  min-width: 0;
}

.dashboard-grid > div {
  min-width: 0;
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.dashboard-section-title {
  margin: 0 0 var(--space-4);
  font-size: var(--text-lg);
  line-height: var(--leading-lg);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}

.dashboard-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid #e5e7eb;
  padding: var(--space-6);
}

.dashboard-card-title {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: 500;
  color: var(--text);
}

.dashboard-card-action {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.dashboard-balance-header {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
}

.dashboard-balance-label {
  margin: 0 0 var(--space-1);
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--text-muted);
}

.dashboard-balance-value {
  margin: 0;
  font-size: var(--text-3xl);
  line-height: var(--leading-3xl);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}

.dashboard-balance-chart {
  height: 140px;
  background: linear-gradient(180deg, rgba(38, 176, 159, 0.25) 0%, rgba(38, 176, 159, 0) 100%);
  border-radius: var(--radius);
  border-top: 2px solid var(--accent);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.dashboard-stat-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  box-shadow: var(--card-shadow);
  padding: var(--space-6);
}

.dashboard-stat-label {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.dashboard-stat-value {
  font-size: var(--text-xl);
  line-height: var(--leading-xl);
  font-weight: 600;
  color: var(--text);
}

.dashboard-stat-subtext {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  color: var(--accent);
  margin-top: var(--space-2);
}

.dashboard-activity-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  margin: 0 calc(-1 * var(--space-3));
  border-radius: var(--radius);
  border-bottom: none;
  transition: background 0.15s;
}

.dashboard-activity-item:hover {
  background: #f3f4f6;
}

.dashboard-activity-item:not(:last-child) {
  margin-bottom: 2px;
}

.dashboard-activity-initials {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #e5e7eb;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-activity-body {
  flex: 1;
  min-width: 0;
}

.dashboard-activity-desc {
  display: block;
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: 500;
  color: var(--text);
}

.dashboard-activity-meta {
  display: block;
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.dashboard-activity-amount {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: 500;
  color: var(--accent);
  text-align: right;
}

.dashboard-account-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--space-3);
  margin: 0 calc(-1 * var(--space-3));
  border-radius: var(--radius);
  transition: background 0.15s;
}

.dashboard-account-item:hover {
  background: #f3f4f6;
}

.dashboard-account-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dashboard-account-name {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: 500;
  color: var(--text);
}

.dashboard-account-number {
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  color: var(--text-muted);
}

.dashboard-account-balance {
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  font-weight: 500;
  color: var(--text);
}

.dashboard-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3);
  margin: 0 calc(-1 * var(--space-3));
  border-radius: var(--radius);
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}

.dashboard-quick-link:not(:last-child) {
  margin-bottom: 2px;
}

.dashboard-quick-link:hover {
  background: #f3f4f6;
}

.dashboard-quick-link svg {
  width: var(--icon-size);
  height: var(--icon-size);
  flex-shrink: 0;
  color: var(--text-muted);
}

.dashboard-card-footer {
  margin-top: var(--space-3);
  padding-top: 0;
}

.dashboard-card-link {
  display: block;
  padding: var(--space-2) 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.dashboard-card-link:hover {
  color: var(--text);
  background: #f3f4f6;
}


.dashboard-main {
  max-width: 900px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid #e5e7eb;
  padding: 28px;
}

.dashboard-title {
  margin: 0 0 4px;
  font-size: 1.75rem;
  line-height: var(--leading-2xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}

.dashboard-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

/* Flash in dashboard */
.dashboard-body .flash-notice,
.dashboard-body .flash-alert {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 50;
  margin: 0;
}

.dashboard-body .flash-notice {
  background: #dcfce7;
  color: #166534;
}

.dashboard-body .flash-alert {
  background: #fee2e2;
  color: #991b1b;
}

/* Landing page (application layout) */
.notice, .alert {
  padding: 12px 20px;
  margin: 0 0 16px;
  border-radius: var(--radius);
}

.notice {
  background: #dcfce7;
  color: #166534;
}

.alert {
  background: #fee2e2;
  color: #991b1b;
}

/* Devise auth pages (login, sign up, forgot password, etc.) */
.devise-body {
  min-height: 100vh;
  background: var(--devise-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.devise-body .notice,
.devise-body .alert {
  position: fixed;
  top: 24px;
  right: 24px;
  margin: 0;
  z-index: 50;
}

.devise-brand {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 24px;
  text-align: center;
}

.devise-brand:hover {
  color: var(--accent);
}

.devise-auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--card-bg);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.devise-auth-card h2 {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.devise-auth-card h3 {
  margin: 24px 0 12px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.devise-auth-card .field {
  margin-bottom: 20px;
}

.devise-auth-card .field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text);
}

.devise-auth-card .field input[type="email"],
.devise-auth-card .field input[type="password"],
.devise-auth-card .field input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  font: inherit;
  font-size: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

.devise-auth-card .field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(38, 176, 159, 0.2);
}

.devise-auth-card .field input[type="checkbox"] {
  width: auto;
}

.devise-auth-card .field p {
  margin: 0;
}

.devise-auth-card .field-remember {
  margin-top: 4px;
}

.devise-auth-card .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text);
}

.devise-auth-card .remember-me input[type="checkbox"] {
  margin: 0;
}

.devise-auth-card .field em {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.devise-auth-card .actions {
  margin-top: 24px;
}

.devise-auth-card .actions input[type="submit"] {
  width: 100%;
  padding: 10px 16px;
  font: inherit;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background: var(--btn-primary-bg);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}

.devise-auth-card .actions input[type="submit"]:hover {
  background: var(--btn-primary-hover);
}

.devise-auth-card .button_to {
  margin-top: 8px;
}

.devise-auth-card .button_to input[type="submit"] {
  background: var(--btn-secondary-bg);
  color: var(--text);
  border: none;
}

.devise-auth-card .button_to input[type="submit"]:hover {
  background: var(--btn-secondary-hover);
  color: var(--text);
}

.devise-auth-card #error_explanation {
  background: #fee2e2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.devise-auth-card #error_explanation h2 {
  margin: 0 0 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.devise-auth-card #error_explanation ul {
  margin: 0;
  padding-left: 20px;
}

.devise-auth-card .shared-links {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.devise-auth-card .shared-links p {
  margin: 0 0 8px;
}

.devise-auth-card .shared-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.devise-auth-card .shared-links a:hover {
  text-decoration: underline;
}

.devise-auth-card > div:last-child {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.devise-auth-card > div:last-child a {
  color: var(--accent);
  text-decoration: none;
}

.devise-auth-card > div:last-child a:hover {
  text-decoration: underline;
}
