
/* Rectru UI – Modern, polished theme */


:root {
  --bg: #020617;
  --bg-elevated: #030712;
  --bg-card: rgba(15, 23, 42, 0.95);
  --bg-soft: rgba(15, 23, 42, 0.8);
  --border-subtle: rgba(148, 163, 184, 0.3);
  --border-strong: rgba(148, 163, 184, 0.7);
  --accent: #6366f1;
  --accent-soft: rgba(99, 102, 241, 0.18);
  --accent-soft-strong: rgba(129, 140, 248, 0.3);
  --accent-strong: #4f46e5;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --danger: #f97373;
  --success: #22c55e;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.9);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #020617 0, #000 60%);
  color: var(--text);
}

body {
  min-height: 100vh;
}

/* ---- Layout helpers ---- */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  padding: 72px 0;
  background: radial-gradient(circle at top, #020617 0, #020617 25%, #020617 60%);
  position: relative;
  overflow: hidden;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.12) 0, transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

/* ---- Header / nav ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(15, 23, 42, 1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  height: 150px;          /* adjust as needed */
  width: auto;
  object-fit: contain;
  display: block;
}


.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /*padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.9);
  font-weight: 700;
  letter-spacing: 0.14em;*/
  text-transform: uppercase;
  font-size: 14px;
}

/* Move logo a bit closer to the left edge */
.site-header .logo {
  margin-left: -35px;   /* tweak this value until it looks right */
}


/*.logo::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e 0, #16a34a 45%, transparent 80%);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.95);
}*/

.logo-center {
  text-align: center;
  margin-bottom: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #6366f1, #a855f7);
  transition: width 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 6px;
}

/* Auth pages: pin language switcher to top-right */
.auth-body .lang-switcher {
  position: absolute;
  top: 16px;
  right: 16px;
  margin-right: 0;
  z-index: 50;
}


.lang-label {
  font-size: 12px;
  color: var(--muted);
}

.lang-select {
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 12px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.lang-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.5);
}


/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.08s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: white;
  border-color: rgba(129, 140, 248, 0.8);
  box-shadow: 0 16px 40px rgba(88, 80, 236, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow: 0 18px 50px rgba(129, 140, 248, 0.8);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.45);
  color: var(--muted);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
}

.btn-outline:hover {
  border-color: rgba(148, 163, 184, 0.8);
  color: var(--text);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.95));
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.25);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text);
}

.btn.small {
  padding: 6px 12px;
  font-size: 12px;
}

.full-width {
  width: 100%;
}

/* ---- Hero ---- */

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Move the hero heading slightly upwards */
.hero h1 {
  margin-top: -12px;   /* make more negative for bigger shift */
}


.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.16), transparent 50%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 40px;
  align-items: center;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.highlight {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-card {
  position: relative;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.14),
    transparent 40%,
    rgba(236, 72, 153, 0.12)
  );
  opacity: 0.8;
  pointer-events: none;
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #4ade80 0, #22c55e 60%, transparent 85%);
}

/* ---- Text helpers ---- */

.muted {
  color: var(--muted);
}

.small {
  font-size: 12px;
}

/* ---- Feature grid ---- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.feature-card {
  position: relative;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
  border-radius: var(--radius-md);
  padding: 16px 16px 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 15px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Pricing ---- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.pricing-card {
  position: relative;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
  border-radius: 20px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.pricing-card > * {
  position: relative;
  z-index: 1;             /* ensures button/text sit above the overlay */
}


.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.24), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;

  pointer-events: none;   /* ✅ IMPORTANT: allows clicks through */
  z-index: 0;             /* keep it behind content */
}


.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.highlighted {
  border-color: rgba(129, 140, 248, 0.95);
  box-shadow: 0 22px 60px rgba(88, 80, 236, 0.9);
}

.pricing-name {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.9);
}

.pricing-price {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0 4px;
}

.pricing-interval {
  font-size: 12px;
  color: var(--muted);
}

.pricing-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.pricing-meta strong {
  color: var(--text);
}

.pricing-cta {
  margin-top: 10px;
}

/* ---- About ---- */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 26px;
}

.about-highlight {
  position: relative;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94));
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(129, 140, 248, 0.24), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

/* ---- Footer ---- */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 18px 0 22px;
  margin-top: 24px;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 1)
  );
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

/* ---- Cards / forms / tables ---- */

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 16px 16px 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 9px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.5);
}

textarea {
  resize: vertical;
}

.form-message {
  margin-top: 8px;
  font-size: 13px;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--success);
}

/* Table */

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.table th,
.table td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid rgba(30, 41, 59, 0.9);
}

.table th {
  font-weight: 500;
  color: var(--muted);
}

.table tr:last-child td {
  border-bottom: none;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
}

.status-pill.scheduled {
  border-color: rgba(59, 130, 246, 0.9);
  color: #bfdbfe;
}

.status-pill.completed {
  border-color: rgba(34, 197, 94, 0.9);
  color: #bbf7d0;
}

.status-pill.cancelled {
  border-color: rgba(239, 68, 68, 0.9);
  color: #fecaca;
}

/* ---- Auth layout ---- */

body.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000 100%);
  position: relative;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 26px 22px 20px;
  background: radial-gradient(circle at top left, #020617, #020617 40%, #000 100%);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.demo-accounts {
  margin-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  padding-top: 10px;
}

.demo-accounts ul {
  margin: 0;
  padding-left: 20px;
  font-size: 12px;
  color: var(--muted);
}

.demo-accounts code {
  font-size: 12px;
}

/* ---- Portal layout ---- */

/* ---- Portal layout ---- */

/* 2 fixed columns: left = plan/usage/interviews, right = schedule form */
.portal-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
}

/* left column a bit wider than right */
.portal-left {
  flex: 1.1;
  min-width: 0;
}

/* right column for the schedule card */
.portal-right {
  flex: 1;
  min-width: 0;
}

/* keep the table in a scrollable sub-area */
.interview-table-wrapper {
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
}

.interview-table-scroll {
  max-height: 420px;
  overflow-y: auto;
  overflow-x: auto;
}



/* ---- Utility ---- */

.hidden {
  display: none;
}

/* ---- Responsive ---- */

@media (max-width: 700px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  /*.portal-layout {
    flex-direction: column;
  }*/

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .section,
  .section-alt {
    padding: 56px 0;
  }

  .hero {
    padding-top: 72px;
  }
}
/* Interview table links (ID + Evaluation) */
.table a,
.table a:visited {
  color: #a5b4ff;          /* light indigo – visible on dark bg */
  text-decoration: none;
}

.table a:hover {
  color: #c7d2ff;          /* a bit brighter on hover */
  text-decoration: underline;
}

/* Cancel interview button in portal table */
.cancel-btn {
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.85);
  background: transparent;
  color: #fecaca;
  font-size: 11px;
  cursor: pointer;
}

.cancel-btn:hover {
  background: rgba(127, 29, 29, 0.7);
}
/* Interview table links (ID / Evaluation) */
.table a,
.table a:visited {
  color: #c7d2ff;        /* light indigo */
  text-decoration: none;
}

.table a:hover {
  color: #e0e7ff;        /* brighter on hover */
  text-decoration: underline;
}
/* Position language selector in top-right on login page */
.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1000;
}

.lang-label {
  font-size: 14px;
  opacity: 0.8; /* optional */
}

.lang-select {
  border-radius: 999px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
}

.language-switcher label {
  color: #ccc;
  font-size: 14px;
}

/* Language selector styling (keep as is if you like it) */
.language-switcher select {
  background: #1e1e2f;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #444;
}

/* Login page only */
.login-page .logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;     /* optional tweak */
  margin-bottom: 0;     /* remove extra space under logo */
}

.login-page .logo-center .site-logo {
  width: 500px;         /* make logo large on login */
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Reduce overall top padding inside the card */
.login-page .auth-card {
  padding-top: 5px !important;
}

/* 🔑 KEY FIX: remove large margin ABOVE the heading */
.login-page .auth-card h1 {
  margin-top: 0;   /* or 0 if you want it tighter */
}
.portal-user-menu { position: relative; display: inline-block; }

.portal-user-dropdown {
  position: absolute;
  right: 0;
  top: 110%;
  min-width: 160px;
  background: rgba(10, 12, 20, 0.95);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 8px;
  z-index: 999;
}

.portal-user-dropdown a,
.portal-user-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 10px;
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  border-radius: 10px;
  font-size: 14px;
}

.portal-user-dropdown a:hover,
.portal-user-dropdown button:hover {
  background: rgba(255,255,255,0.08);
}

.hidden { display: none !important; }
/* ---------- Modal (Upgrade) ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

.modal {
  width: 100%;
  max-width: 720px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  box-shadow: 0 18px 80px rgba(0,0,0,0.45);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-size: 18px;
  font-weight: 700;
}

.modal-body {
  padding: 16px;
}

.modal-footer {
  padding: 12px 16px 16px 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 720px) {
  .plan-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.plan-card {
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 14px;
  background: var(--bg-soft);
  cursor: pointer;
}

.plan-card.selected {
  outline: 2px solid var(--accent);
  border-color: rgba(99,102,241,0.6);
}

.plan-card h4 {
  margin: 0 0 6px 0;
  font-size: 14px;
}

.plan-price {
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0;
}

.plan-meta {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.35;
}

.interval-toggle {
  display: inline-flex;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  overflow: hidden;
}

.interval-toggle button {
  padding: 8px 12px;
  background: transparent;
  color: inherit;
  border: none;
  cursor: pointer;
}

.interval-toggle button.active {
  background: rgba(99,102,241,0.22);
  color: white;
}
/* My Account: Subscription box */
.sub-box {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}

/* New: subscription structured table/grid */
.subCard2 {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  padding: 16px;
}

.subTitleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.subTitle2 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* This is the key: 2 columns */
.subGrid2 {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px 14px;
  align-items: start;
}

.subLabel2 {
  color: rgba(255,255,255,0.75);
  font-weight: 700;
}

.subValue2 {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

/* Portal schedule form: dark themed selects */
#scheduleForm select {
  background: rgba(15, 23, 42, 0.55);
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
}

/* option list (best effort; browser-dependent) */
#scheduleForm select option {
  background: #0b1220;
  color: #e5e7eb;
}

/* focus state */
#scheduleForm select:focus {
  border-color: rgba(167, 139, 250, 0.8);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
}
