/* ═══════════════════════════════════════════════════════════════════════════════
   CLSU SecureID — Official Brand Theme
   Primary: #009639 (CLSU Green) · #FFD700 (CLSU Yellow)
   Secondary: #1E6031 (Green Cobra) · #E0A70D (Gold)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Typography & base ─────────────────────────────────────────────────────── */
body {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(0, 150, 57, 0.06) 0%, transparent 50%),
    var(--bg);
}

h1, h2, h3, .admin-title, .application-title, .brand-name {
  letter-spacing: -0.01em;
}

/* ── CLSU brand mark ───────────────────────────────────────────────────────── */
.clsu-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.clsu-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background:
    linear-gradient(145deg, var(--clsu-green) 0%, var(--clsu-green-cobra) 100%);
  box-shadow:
    0 0 0 2px var(--clsu-yellow),
    var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.clsu-logo::after {
  content: '';
  position: absolute;
  inset: 8px 10px;
  border: 2px solid rgba(255, 215, 0, 0.85);
  border-radius: 4px;
  border-top: none;
  border-left-color: transparent;
}

.clsu-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.clsu-brand-text .brand-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--clsu-green-cobra);
  line-height: 1.2;
}

.clsu-brand-text .brand-tagline {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.2;
}

.in-sidebar .clsu-brand-text .brand-name,
.in-sidebar .clsu-brand-text .brand-tagline {
  color: rgba(255, 255, 255, 0.95);
}

.in-sidebar .clsu-brand-text .brand-tagline {
  color: rgba(255, 215, 0, 0.85);
}

.logo-dot {
  display: none;
}

/* ── Authentication ────────────────────────────────────────────────────────── */
.auth-shell {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--clsu-green-cobra);
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}

.auth-shell::before {
  content: '';
  position: fixed;
  inset: -24px;
  z-index: 0;
  background-image: url('/secureid/assets/clsu-login-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 38%;
  filter: blur(3px);
  transform: scale(1.06);
  will-change: transform;
}

.auth-shell::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(0, 150, 57, 0.1) 0%, transparent 48%),
    linear-gradient(160deg, rgba(30, 96, 49, 0.45) 0%, rgba(21, 71, 37, 0.35) 45%, rgba(15, 51, 25, 0.42) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .auth-shell::before {
    filter: none;
    transform: none;
    inset: 0;
  }
}

.auth-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 20px 24px 24px;
  gap: 14px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.auth-brand-login {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 0;
}

.auth-brand-login .clsu-brand-text {
  align-items: center;
}

.clsu-logo-mark {
  display: block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #fff;
  background-image: url('/secureid/assets/clsu-logo-seal.png?v=20260629');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 106%;
  box-shadow:
    0 0 0 2px #fff,
    var(--shadow-sm);
}

.clsu-logo-mark.clsu-logo-mark--sidebar {
  flex-shrink: 0;
}

.clsu-logo-mark.clsu-logo-mark--login {
  width: 76px;
  height: 76px;
  background-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.72),
    0 4px 14px rgba(0, 0, 0, 0.18);
}

.clsu-logo-img {
  display: block;
  width: min(140px, 42vw);
  height: auto;
  object-fit: contain;
}

.auth-card .clsu-brand-text .brand-name {
  font-size: 20px;
}

.auth-tab.active {
  background: linear-gradient(135deg, var(--clsu-green) 0%, var(--clsu-green-cobra) 100%);
  color: #fff;
  border-color: var(--clsu-green);
  box-shadow: var(--shadow-sm);
}

.auth-card .auth-tab:not(.active) {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.auth-card .form-row input {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.auth-card .auth-note {
  border-top-color: rgba(255, 255, 255, 0.35);
}

.auth-tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--accent-border);
}

.auth-card .primary-btn {
  background: linear-gradient(135deg, var(--clsu-green) 0%, var(--clsu-green-cobra) 100%);
  border: 1px solid var(--clsu-green-cobra);
  height: 44px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 150, 57, 0.25);
}

.auth-card .primary-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(0, 150, 57, 0.3);
}

.auth-note {
  padding-top: 8px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-weight: 500;
}

/* ── Sidebar navigation ────────────────────────────────────────────────────── */
.sidebar {
  background: linear-gradient(180deg, var(--clsu-green-cobra) 0%, #154725 100%);
  border-right: none;
  box-shadow: 4px 0 24px rgba(20, 40, 32, 0.15);
  color: rgba(255, 255, 255, 0.92);
}

.sidebar-header {
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar .icon-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.sidebar .icon-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.sidebar-footer .icon-left-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  width: 100%;
  justify-content: flex-start;
}

.sidebar-footer .icon-left-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-item {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.22) 0%, rgba(0, 150, 57, 0.35) 100%);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--clsu-yellow);
  font-weight: 600;
}

.nav-item.active svg {
  color: var(--clsu-yellow);
}

.sidebar-nav svg {
  color: rgba(255, 215, 0, 0.75);
}

/* ── Topbar ─────────────────────────────────────────────────────────────────── */
.topbar {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--clsu-green);
  background: linear-gradient(180deg, #fff 0%, #fafdfb 100%);
}

.topbar .brand-name {
  color: var(--clsu-green-cobra);
}

.search {
  background: var(--hover);
  border-color: var(--border);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search:focus-within {
  border-color: var(--clsu-green);
  box-shadow: 0 0 0 3px rgba(0, 150, 57, 0.12);
  background: #fff;
}

.avatar {
  background: linear-gradient(135deg, var(--clsu-yellow) 0%, var(--clsu-green) 100%);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 150, 57, 0.2);
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.primary-btn {
  background: linear-gradient(135deg, var(--clsu-green) 0%, var(--clsu-green-cobra) 100%);
  border: 1px solid var(--clsu-green-cobra);
  box-shadow: 0 2px 6px rgba(0, 150, 57, 0.2);
  transition: filter 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.primary-btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 4px 12px rgba(0, 150, 57, 0.28);
}

.primary-btn:active {
  transform: translateY(1px);
}

.secondary-btn {
  border-color: var(--clsu-gold);
  color: var(--clsu-green-cobra);
  background: #fff;
  font-weight: 600;
}

.secondary-btn:hover {
  background: var(--highlight-light);
  border-color: var(--clsu-yellow);
}

/* ── Toolbar & content cards ───────────────────────────────────────────────── */
.toolbar {
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.card--folder {
  background: linear-gradient(145deg, #fffbea 0%, #fef3c7 100%);
  border-color: var(--clsu-gold);
}

.card--file {
  background: linear-gradient(145deg, var(--accent-light) 0%, #d4f5e0 100%);
  border-color: var(--accent-border);
}

.table {
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.table-head {
  background: linear-gradient(180deg, var(--clsu-green-cobra) 0%, #174d28 100%);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.file-link {
  color: var(--clsu-green);
}

.file-link:hover {
  color: var(--clsu-green-cobra);
}

/* ── Admin dashboard ─────────────────────────────────────────────────────────── */
.admin-container,
.applications-container {
  background:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(255, 215, 0, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--highlight-light) 0%, var(--bg) 200px);
}

.admin-header-group {
  background: linear-gradient(135deg, var(--clsu-green-cobra) 0%, var(--clsu-green) 55%, #1a7a3a 100%);
  border: none;
  color: #fff;
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.admin-header-group::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15));
  pointer-events: none;
}

.admin-header-group .admin-title {
  color: #fff;
  font-size: 1.5rem;
}

.admin-header-group .admin-subtitle,
.admin-header-group .muted,
.admin-header-group .small {
  color: rgba(255, 255, 255, 0.85) !important;
}

.admin-header-group .admin-updated-label {
  color: rgba(255, 215, 0, 0.95);
  font-weight: 600;
}

.admin-header-group .admin-live-indicator {
  color: rgba(255, 215, 0, 0.95);
}

.admin-header-group .admin-live-indicator::before {
  background: var(--clsu-yellow);
}

.admin-card {
  border-color: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Analytics status cards */
.admin-status-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.admin-status-card:hover {
  border-color: var(--clsu-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.admin-status-card.active {
  border-color: var(--clsu-green);
  box-shadow: 0 0 0 3px rgba(0, 150, 57, 0.18);
  background: var(--accent-light);
}

.admin-status-card[data-status="all"] {
  background: linear-gradient(145deg, #fff 0%, var(--accent-light) 100%);
  border-color: var(--clsu-green);
}

.admin-status-card[data-status="all"] .admin-status-value {
  color: var(--clsu-green-cobra);
}

.admin-status-value {
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}

/* Charts */
.admin-charts-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.admin-chart-card {
  border-color: var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.15s ease;
}

.admin-chart-card:hover {
  box-shadow: var(--shadow-md);
}

.admin-chart-title {
  color: var(--clsu-green-cobra);
  font-size: 16px;
}

.admin-chart-legend-value,
.admin-donut-hole {
  color: var(--clsu-green-cobra);
}

.admin-trend-bar {
  background: linear-gradient(180deg, var(--clsu-yellow) 0%, var(--clsu-green) 100%);
}

.admin-bar-fill {
  background: linear-gradient(90deg, var(--clsu-green) 0%, var(--clsu-green-cobra) 100%) !important;
}

.admin-bar-track {
  background: var(--accent-light);
}

.admin-bottleneck-callout {
  border-color: var(--clsu-yellow);
  background: var(--highlight-light);
  color: var(--highlight-dark);
  border-left: 4px solid var(--clsu-gold);
}

/* Data tables */
.admin-table-wrapper {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background: #fff;
}

.admin-table-wrapper.admin-batch-scroll {
  overflow: visible;
  max-height: none;
  min-height: 0;
}

.admin-batch-scroll-body {
  overflow: auto;
  max-height: min(420px, 50vh);
  min-height: 180px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.applications-container .admin-users-scroll,
.admin-container .admin-users-scroll {
  max-height: min(420px, 48vh);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.application-status-container .application-status-records-scroll {
  max-height: min(340px, 42vh);
  min-height: 200px;
  min-width: 0;
  width: 100%;
  overflow: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable both-edges;
}

.application-status-container .admin-table-wrapper.application-status-table-wrap {
  overflow: visible !important;
}

.admin-table-head th {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 14px 16px;
}

.admin-container .admin-table-head th,
.applications-container .admin-table-head th,
.admin-users-scroll .admin-table-head th {
  background: linear-gradient(180deg, var(--clsu-green-cobra) 0%, #174d28 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.admin-table-head {
  background: linear-gradient(180deg, var(--clsu-green-cobra) 0%, #174d28 100%);
}

.admin-table-row:nth-child(even) {
  background: rgba(0, 150, 57, 0.02);
}

.admin-table-row:hover {
  background: var(--highlight-light);
}

.admin-users-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.admin-container .primary-btn {
  background: linear-gradient(135deg, var(--clsu-green) 0%, var(--clsu-green-cobra) 100%);
}

.admin-container .secondary-btn {
  border-color: var(--clsu-gold);
  color: var(--clsu-green-cobra);
}

.admin-badge-status-applied,
.admin-badge-batch-applied,
.admin-badge-applied {
  background: var(--accent-light);
  color: var(--clsu-green-cobra);
}

.admin-badge-status-submitted,
.admin-badge-status-submitted_to_dict,
.admin-badge-batch-collecting,
.admin-badge-batch-submitted_to_dict {
  background: var(--highlight-light);
  color: var(--highlight-dark);
}

.admin-badge-status-submitted_to_dict,
.admin-badge-batch-submitted_to_dict {
  background: #e6f7ed;
  color: var(--clsu-green-cobra);
}

/* ── Applicant application panel ───────────────────────────────────────────── */
.application-container {
  max-width: 980px;
}

.application-status-hero {
  background: linear-gradient(135deg, var(--highlight-light) 0%, var(--accent-light) 100%);
  border-color: var(--accent-border);
  border-left: 4px solid var(--clsu-green);
  box-shadow: var(--shadow-sm);
}

.application-title {
  color: var(--clsu-green-cobra);
}

.app-status-progress-applied,
.app-status-approved {
  background: var(--accent-light);
  color: var(--clsu-green-cobra);
}

.app-status-progress-pending,
.app-status-pending {
  background: var(--highlight-light);
  color: var(--highlight-dark);
}

.tracking-step.is-current .tracking-step-dot {
  background: var(--clsu-green);
  box-shadow: 0 0 0 4px rgba(0, 150, 57, 0.2);
}

.tracking-step.is-complete .tracking-step-dot {
  background: var(--clsu-green-cobra);
}

/* ── Mobile bottom nav ───────────────────────────────────────────────────────── */
.mobile-bottom-nav {
  border-top: 2px solid var(--clsu-green);
  background: #fff;
}

.bottom-nav-item.active {
  color: var(--clsu-green-cobra);
  background: var(--accent-light);
}

.bottom-nav-item.active svg {
  color: var(--clsu-green);
}

/* ── Toasts & modals ─────────────────────────────────────────────────────────── */
#toast-container .toast-item {
  border-left: 4px solid var(--clsu-green);
}

.modal .modal-content {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom-color: var(--border);
}

/* ── Storage panel ───────────────────────────────────────────────────────────── */
.storage-panel-title {
  color: var(--clsu-green-cobra);
}

.storage-stat-card {
  background: linear-gradient(145deg, #fff 0%, var(--accent-light) 100%);
  border-color: var(--accent-border);
}

.storage-stat-value.storage-health-ok {
  color: var(--clsu-green);
}

/* ── Automated reports ─────────────────────────────────────────────────────── */
.admin-reports-card {
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff 0%, var(--accent-light) 100%);
}
.admin-reports-head {
  margin-bottom: 12px;
}
.admin-reports-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.admin-reports-actions .secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.admin-reports-footnote {
  margin: 10px 0 0;
}

/* Batch table Actions: Approve/Reject on top, tools below */
.application-status-batch-table .admin-batch-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 220px;
}

.application-status-batch-table .admin-batch-actions-decisions,
.application-status-batch-table .admin-batch-actions-tools {
  width: 100%;
}

.application-status-batch-table .admin-decision-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.application-status-batch-table .admin-decision-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  min-width: 96px;
  padding: 0 14px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.application-status-batch-table .admin-decision-action-btn .admin-decision-icon-svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.application-status-batch-table .admin-decision-action-btn--approve {
  background: var(--clsu-green-cobra, #009639);
  border-color: #007a2f;
}

.application-status-batch-table .admin-decision-action-btn--approve:hover:not(:disabled):not([aria-disabled="true"]) {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 150, 57, 0.28);
}

.application-status-batch-table .admin-decision-action-btn--reject {
  background: #dc2626;
  border-color: #b91c1c;
}

.application-status-batch-table .admin-decision-action-btn--reject:hover:not(:disabled):not([aria-disabled="true"]) {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.24);
}

.application-status-batch-table .admin-decision-action-btn:disabled,
.application-status-batch-table .admin-decision-action-btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.admin-batch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

/* ── Scrollbars (CLSU tinted) ────────────────────────────────────────────────── */
.admin-container,
.applications-container,
.admin-batch-scroll,
.application-status-records-scroll,
.applications-container .admin-users-scroll,
.admin-container .admin-users-scroll {
  scrollbar-color: var(--clsu-green) #eef6f1;
}

.admin-container::-webkit-scrollbar-thumb,
.applications-container::-webkit-scrollbar-thumb,
.admin-batch-scroll::-webkit-scrollbar-thumb,
.application-status-records-scroll::-webkit-scrollbar-thumb,
.applications-container .admin-users-scroll::-webkit-scrollbar-thumb,
.admin-container .admin-users-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--clsu-green) 0%, var(--clsu-green-cobra) 100%);
  border-color: #eef6f1;
}

.admin-container::-webkit-scrollbar-thumb:hover,
.applications-container::-webkit-scrollbar-thumb:hover,
.admin-batch-scroll::-webkit-scrollbar-thumb:hover,
.application-status-records-scroll::-webkit-scrollbar-thumb:hover,
.applications-container .admin-users-scroll::-webkit-scrollbar-thumb:hover,
.admin-container .admin-users-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--clsu-green-cobra);
}

.admin-panel-scroll {
  scrollbar-color: inherit;
}

/* ── Focus states (accessibility) ────────────────────────────────────────────── */
:focus-visible {
  outline-color: var(--clsu-green);
}

.form-row input:focus {
  border-color: var(--clsu-green);
  box-shadow: 0 0 0 3px rgba(0, 150, 57, 0.15);
}
