/* GSC Immobiliare — Landing Barbara Del Vescovo
   Palette dal sito: #2F368E (blu), #28A9E1 (ciano), #38B349 (verde) */

:root {
  --gsc-blue: #2f368e;
  --gsc-blue-dark: #232868;
  --gsc-cyan: #28a9e1;
  --gsc-green: #38b349;
  --gsc-text: #333333;
  --gsc-muted: #666666;
  --gsc-light: #f5f6fa;
  --gsc-border: #e4e6ef;
  --gsc-white: #ffffff;
  --header-h: 78px;
  --radius: 6px;
  --shadow: 0 8px 28px rgba(47, 54, 142, 0.12);
  --font: "Ubuntu", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gsc-text);
  background: var(--gsc-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gsc-blue);
  text-decoration: none;
}

a:hover {
  color: var(--gsc-cyan);
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Top bar + Header ——— */
.site-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar {
  background: var(--gsc-blue);
  color: #fff;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 40px;
  padding-block: 0.4rem;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar a:hover {
  color: #ccebff !important;
}

.topbar svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.topbar-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  justify-content: center;
}

.topbar-social a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff !important;
}

.topbar-social svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 640px) {
  .topbar-mobile-hide {
    display: none;
  }

  .topbar-contacts a {
    font-size: 0.78rem;
  }

  .topbar-contacts a span,
  .topbar-contacts {
    gap: 0.55rem 0.85rem;
  }
}

.site-header {
  background: var(--gsc-white);
  border-bottom: 1px solid var(--gsc-border);
  height: var(--header-h);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  height: 52px;
  width: auto;
}

.btn-sito {
  display: inline-flex;
  align-items: center;
  background: var(--gsc-blue);
  color: #fff !important;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-sito:hover {
  background: var(--gsc-blue-dark);
  color: #fff !important;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(35, 40, 104, 0.45) 0%, rgba(47, 54, 142, 0.72) 55%, rgba(47, 54, 142, 0.9) 100%),
    url("../assets/office.jpg") center / cover no-repeat;
}

.hero-content {
  padding: 4.5rem 0 3.5rem;
}

.hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.hero-lead {
  margin: 0;
  max-width: 38rem;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ——— Sections ——— */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--gsc-light);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  color: var(--gsc-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--gsc-cyan);
  margin-top: 0.65rem;
}

.section-head p {
  margin: 0.85rem 0 0;
  color: var(--gsc-muted);
  max-width: 42rem;
}

/* ——— Presentazione ——— */
.intro-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .intro-grid {
    grid-template-columns: 0.9fr 1.35fr;
    align-items: start;
    gap: 3rem;
  }
}

.portrait-card {
  position: relative;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ddd;
}

.portrait-meta {
  margin-top: 1rem;
}

.portrait-meta h3 {
  margin: 0;
  color: var(--gsc-blue);
  font-size: 1.35rem;
}

.portrait-meta .role {
  margin: 0.25rem 0 0;
  color: var(--gsc-green);
  font-weight: 700;
}

.bio p {
  margin: 0 0 1rem;
}

.bio p:last-child {
  margin-bottom: 0;
}

.bio strong {
  color: var(--gsc-blue-dark);
}

/* ——— Competenze / esperienze ——— */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.chips li {
  background: #fff;
  border: 1px solid var(--gsc-border);
  color: var(--gsc-blue);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.experience-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.exp-card {
  background: #fff;
  border: 1px solid var(--gsc-border);
  border-top: 3px solid var(--gsc-blue);
  padding: 1.35rem 1.2rem 1.3rem;
  border-radius: var(--radius);
}

.exp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(47, 54, 142, 0.08);
  color: var(--gsc-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.exp-icon svg {
  display: block;
}

.exp-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--gsc-blue);
}

.exp-card p {
  margin: 0;
  color: var(--gsc-muted);
  font-size: 0.95rem;
}

/* ——— Attestati carousel ——— */
.carousel-wrap {
  position: relative;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.cert-card {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--gsc-border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cert-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  background: #eee;
}

.cert-card figcaption {
  padding: 0.85rem 1rem 1rem;
}

.cert-card strong {
  display: block;
  color: var(--gsc-blue);
  font-size: 0.95rem;
  line-height: 1.35;
}

.cert-card span {
  display: block;
  margin-top: 0.25rem;
  color: var(--gsc-muted);
  font-size: 0.82rem;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gsc-border);
  background: #fff;
  color: var(--gsc-blue);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--gsc-blue);
  color: #fff;
  border-color: var(--gsc-blue);
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 24, 60, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(960px, 100%);
  max-height: 90vh;
  display: grid;
  gap: 0.75rem;
}

.lightbox-inner img {
  max-height: 78vh;
  width: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
}

.lightbox-caption {
  color: #fff;
  text-align: center;
  margin: 0;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  cursor: pointer;
  border-radius: 50%;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 210;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--gsc-blue);
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.lightbox-close:hover {
  background: var(--gsc-cyan);
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.lightbox-nav.prev {
  left: -0.25rem;
}

.lightbox-nav.next {
  right: -0.25rem;
}

@media (min-width: 900px) {
  .lightbox-nav.prev {
    left: -3.2rem;
  }
  .lightbox-nav.next {
    right: -3.2rem;
  }
}

/* ——— Video carousel ——— */
.video-card {
  flex: 0 0 min(240px, 72vw);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--gsc-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #1a1d3a;
}

.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  display: block;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-cover-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(47, 54, 142, 0.85);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  padding-left: 0.2em;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.video-cover:hover .video-cover-play {
  background: rgba(40, 169, 225, 0.95);
}

.video-frame.is-playing .video-cover {
  display: none;
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-frame video[hidden] {
  display: none;
}

.video-card h3 {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  font-size: 1rem;
  color: var(--gsc-blue);
  line-height: 1.35;
}

/* ——— FAQ ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--gsc-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--gsc-blue);
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: rgba(47, 54, 142, 0.03);
}

.faq-q {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gsc-border);
  background: var(--gsc-light);
  position: relative;
  margin-top: 0.05rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gsc-blue);
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
  background: var(--gsc-blue);
  border-color: var(--gsc-blue);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #fff;
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  padding: 0 1.15rem 1.15rem;
  color: var(--gsc-muted);
  font-size: 0.95rem;
}

.faq-a p {
  margin: 0;
  border-top: 1px solid var(--gsc-border);
  padding-top: 0.9rem;
}

/* ——— Form ——— */
.form-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .form-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
  }
}

.contact-aside h3 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.25;
}

.contact-card {
  background: linear-gradient(160deg, var(--gsc-blue) 0%, #3a45b0 55%, #1f8fbf 100%);
  color: #fff;
  border-radius: 12px;
  padding: 1.6rem 1.4rem 1.45rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 700;
}

.contact-intro {
  margin: 0 0 1.35rem;
  opacity: 0.92;
  font-size: 0.95rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.15rem;
}

.contact-list li > div span,
.contact-list li > div a {
  display: block;
  color: #fff !important;
  font-weight: 500;
  line-height: 1.45;
}

.contact-list li > div a:hover {
  color: #d9f0ff !important;
}

.contact-social {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social p {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 700;
}

.contact-social-links {
  display: flex;
  gap: 0.5rem;
}

.contact-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: #fff !important;
}

.contact-social-links a:hover {
  background: #fff;
  color: var(--gsc-blue) !important;
}

.contact-social-links svg {
  width: 18px;
  height: 18px;
}

.contact-site-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-site-link:hover {
  color: #d9f0ff !important;
}

.ask-form {
  background: #fff;
  border: 1px solid var(--gsc-border);
  border-radius: 12px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gsc-blue-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd3e6;
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--gsc-text);
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(40, 169, 225, 0.35);
  border-color: var(--gsc-cyan);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-privacy {
  margin-bottom: 1rem;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.88rem;
  color: var(--gsc-muted);
  font-weight: 400 !important;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--gsc-blue);
}

.privacy-check a {
  color: var(--gsc-blue);
  text-decoration: underline;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0.8rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--gsc-blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gsc-blue-dark);
}

.btn-green {
  background: var(--gsc-green);
  color: #fff;
}

.form-note {
  font-size: 0.82rem;
  color: var(--gsc-muted);
  margin: 0;
}

.form-success {
  display: none;
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  background: #eaf8ee;
  color: #1f7a32;
  border-radius: var(--radius);
  font-weight: 500;
}

.form-success.is-visible {
  display: block;
}

.form-error {
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  background: #fdecea;
  color: #c0392b;
  border-radius: var(--radius);
  font-weight: 500;
}

.ask-form .btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* ——— CTA band ——— */
.cta-band {
  background: linear-gradient(90deg, var(--gsc-blue), #3a45b0 55%, var(--gsc-cyan));
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.cta-band p {
  margin: 0 0 1.15rem;
  opacity: 0.95;
}

.cta-band .btn {
  background: #fff;
  color: var(--gsc-blue);
}

/* ——— Footer ——— */
.site-footer {
  background: #fcfcfc;
  border-top: 1px solid var(--gsc-border);
  padding: 2.5rem 0 5.5rem;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  color: var(--gsc-blue);
  font-size: 1.05rem;
}

.site-footer p,
.site-footer li {
  color: var(--gsc-muted);
  font-size: 0.92rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.35rem;
}

.footer-bar {
  background: var(--gsc-blue);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.85rem 0;
  font-size: 0.8rem;
  text-align: center;
}

.footer-bar a {
  color: #fff;
}

/* Sticky chat/call like original */
.sticky-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sticky-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sticky-actions .chat {
  background: var(--gsc-green);
}

.sticky-actions .call {
  background: var(--gsc-blue);
}

@media (min-width: 900px) {
  .sticky-actions {
    display: none;
  }
  .site-footer {
    padding-bottom: 2.5rem;
  }
}

/* ——— Access gate ——— */
body.is-locked > *:not(#access-gate) {
  display: none !important;
}

body.is-locked {
  overflow: hidden;
}

.access-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    linear-gradient(160deg, rgba(47, 54, 142, 0.92), rgba(40, 169, 225, 0.85)),
    url("../assets/office.jpg") center / cover no-repeat;
}

body.is-locked .access-gate {
  display: flex;
}

.access-card {
  width: min(400px, 100%);
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem 1.6rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.access-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 1.1rem;
}

.access-card h1 {
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
  color: var(--gsc-blue);
}

.access-card p {
  margin: 0 0 1.2rem;
  color: var(--gsc-muted);
  font-size: 0.95rem;
}

.access-card input {
  width: 100%;
  border: 1px solid #cfd3e6;
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  font: inherit;
  margin-bottom: 0.85rem;
}

.access-card input:focus {
  outline: 2px solid rgba(40, 169, 225, 0.35);
  border-color: var(--gsc-cyan);
}

.access-card .btn {
  width: 100%;
}

.access-error {
  margin: 0.85rem 0 0 !important;
  color: #c0392b !important;
  font-weight: 500;
  font-size: 0.9rem !important;
}
