body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  background: #FFFFFF;
  color: #222;
}

/* Header */
.header {
  background: #E9F0F9;
  box-shadow: none;
  position: static;
  padding: 0;
}

.header__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0.5rem 1.2rem;
}

.header__branding {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header__logo-img {
  height: 44px;
  display: block;
}

.header__brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.header__brand-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1665c1;
  letter-spacing: -1px;
}

.header__powered {
  display: flex;
  align-items: center;
  gap: 0.33em;
  margin-top: 2px;
}

.header__gear {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 2px;
}

.header__powered-text {
  color: #E30613;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header__signin {
  color: #222;
  font-size: 0.75rem;
  text-decoration: none;
}

.header__cta {
  background: #0667b6;
  color: #fff;
  border: none;
  border-radius: 1000px;
  padding: 0.48em 1.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(44, 51, 128, 0.06);
  text-align: center;
  outline: none;
  display: inline-block;
  transition: background 0.15s;
  cursor: pointer;
}

.header__cta:hover,
.header__cta:focus {
  background: #15518d;
}

/* HERO SECTION (custom) */
.hero-section {
  background: #fff;
  padding: 3.5rem 0 2.5rem 2vw;
}

.hero-section .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
}

.hero-left {
  max-width: 420px;
  padding-left: 1rem;
  flex: 1 1 0;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 600;
  color: #0667b6;
  margin-bottom: 0.7rem;
  line-height: 1.1;
}

.sparkle {
  font-size: 1.6rem;
  vertical-align: middle;
  margin-left: 0.18em;
}

.hero-desc {
  font-size: 0.8rem;
  color: #0667b6;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

.hero__cta {
  background: #0667b6;
  color: #fff;
  border: none;
  border-radius: 1000px;
  padding: 0.48em 1.5em;
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(44, 51, 128, 0.06);
  text-align: center;
  outline: none;
  display: inline-block;
  transition: background 0.15s;
  cursor: pointer;
}

.hero__cta:hover,
.hero__cta:focus {
  background: #15518d;
}

.hero-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-img {
  width: 500px;
  max-width: 95vw;
  display: block;
}

.hero-label {
  position: absolute;
  background: #e4eaff;
  color: #156cb3;
  font-size: 1.07rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(44, 51, 128, 0.08);
  padding: 0.7em 1.5em 0.7em 1.2em;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.3em;
}

.label-top-left {
  top: 26px;
  left: 18px;
}

.label-middle {
  top: 110px;
  left: 30px;
}

.label-middle-right {
  top: 170px;
  right: 18px;
}

.label-bottom-right {
  bottom: 30px;
  right: 10px;
}

.hero-green-bar {
  position: absolute;
  top: 22px;
  left: 110px;
  width: 70px;
  height: 28px;
  background: #00f15e;
  border-radius: 7px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

@media (max-width: 900px) {
  .hero-section .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 4vw 2rem 4vw;
  }

  /* 
  .hero-img {
    width: 98vw;
    max-width: 98vw;
  } */
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-label {
    font-size: 0.97rem;
    padding: 0.55em 1em 0.55em 0.8em;
    border-radius: 10px;
  }

  .hero-img {
    width: 99vw;
    max-width: 99vw;
  }
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 6px;
  padding: 0.9em 2em;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: #7b5cff;
  color: #fff;
  transition: background 0.18s;
}

.btn--primary:hover {
  background: #5f43c2;
}

.hero__image img {
  width: 400px;
  max-width: 90vw;
  border-radius: 14px;
  box-shadow: 0 8px 36px rgba(44, 51, 128, 0.09);
}

/* Partners image constraint */
.partners-img {
  max-height: 36px;
  width: auto;
  display: inline-block;
}

/* Video Section */
/* .video-section {
  background: #23305d;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 2.5rem 0;
}
*/
.video-section {
  position: relative;
  height: 572px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-background {
  width: 100%;
  height: 100%;
  background: url('images/leadr-meeting-pro-video-background.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-embed-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  height: 100%;
}

.video-embed-wrapper iframe {
  width: 80vw;
  max-width: 960px;
  height: 450px;
  max-height: 90%;
  min-height: 320px;
  box-shadow: 0 4px 32px rgba(44, 51, 128, 0.18);
  background: #000;
  border-radius: 16px;
}

@media (max-width: 1100px) {
  .video-embed-wrapper iframe {
    width: 100vw;
    height: 300px;
    max-width: 98vw;
    min-height: 180px;
  }
  .video-section {
    height: 340px;
  }
}

@media (max-width: 600px) {
  .video-section {
    height: 210px;
  }
  .video-embed-wrapper iframe {
    height: 140px;
    min-height: 100px;
  }
}

.video-placeholder {
  background: #fff;
  border-radius: 10px;
  width: 320px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
  font-size: 2.5rem;
  color: #7b5cff;
  position: relative;
  margin: 0 auto;
}

.play-icon {
  font-size: 2.3em;
  margin-bottom: 0.4em;
}

.video-label {
  color: #444;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Features Highlighted Section (custom for landing page reference image) */
.feature-highlight-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0;
  gap: 40px;
  flex-wrap: wrap;
  background: #fff;
}

.feature-highlight-section .feature-highlight-img {
  border-radius: 20px;
  object-fit: cover;
}

.feature-highlight-section .feature-highlight-content {
  max-width: 400px;
  border-radius: 0;
  background: none;
  box-shadow: none;
  padding: 0;
}

.feature-highlight-section .feature-highlight-heading {
  color: #004CA8;
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  text-align: left;
}

.feature-highlight-section ul {
  color: #004CA8;
  font-size: 0.75rem;
  font-weight: 400;
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.45;
  text-align: left;
}

.feature-highlight-section ul li {
  margin-bottom: 0.18em;
  position: relative;
  padding-left: 0.1em;
}

.feature-highlight-section ul li::marker {
  color: #004CA8;
  font-size: 1.3em;
}

@media (max-width: 900px) {
  .feature-highlight-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 4vw;
  }

  .feature-highlight-section .feature-highlight-content {
    padding: 1.5rem 1.2rem;
  }
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  background: #fff;
  padding: 3rem 2vw 2.5rem 2vw;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 540px;
}

.feature img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(44, 51, 128, 0.09);
  object-fit: cover;
}

.feature h2 {
  margin: 0 0 0.4em 0;
  font-size: 1.25rem;
  color: #2d3380;
}

.feature p {
  margin: 0;
  color: #444;
}

/* Comparison Table */
.comparison {
  background: #23305d;
  color: #fff;
  padding: 2.5rem 2vw 2.5rem 2vw;
  text-align: center;
}

.comparison h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 0.2em 0.6em;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 0.6em 0.5em;
}

.comparison-row {
  display: contents;
}

.comparison-row>div {
  padding: 0.7em 0.2em;
  border-bottom: 1px solid #3d4a7d;
  font-size: 1.05rem;
}

.comparison-row.header>div {
  font-weight: 700;
  border-bottom: 2px solid #7b5cff;
  background: none;
}

.comparison-row>div:nth-child(2) {
  color: #bfc3e6;
}

.comparison-row>div:last-child {
  color: #7bffb3;
  font-weight: 600;
}

/* Testimonial CTA */
.testimonial-cta {
  background: #e5e9fb;
  text-align: center;
  padding: 3rem 2vw 2.5rem 2vw;
}

.testimonial-cta blockquote {
  font-size: 1.2rem;
  color: #2d3380;
  margin: 0 auto 1.5rem auto;
  max-width: 500px;
}

.testimonial-cta footer {
  display: block;
  margin-top: 0.7em;
  font-size: 1rem;
  color: #444;
}

/* Comparison Table (New) */
.comparison-new {
  background: #042047;
  padding: 3rem 1rem 5rem;
  color: #fff;
  text-align: center;
}

.comparison-new__heading {
  font-size: 1.53rem;
  font-weight: 700;
  margin-bottom: 2.7rem;
  letter-spacing: 0.01em;
}

.comparison-new__table {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-new__row {
  display: grid;
  grid-template-columns: 0.8fr 0.33fr 2fr;
  align-items: center;
  gap: 0 1.2rem;
}

.comparison-new__problem {
  background: #e8f1fa;
  color: #0b2540;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1.05rem 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(44, 51, 128, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-new__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.33em;
}

.comparison-new__dots span {
  display: block;
  background: #1976d2;
  border-radius: 50%;
  opacity: 0.7;
}

.comparison-new__dots span:nth-child(1) {
  width: 0.36em;
  height: 0.36em;
}

.comparison-new__dots span:nth-child(2) {
  width: 0.47em;
  height: 0.47em;
}

.comparison-new__dots span:nth-child(3) {
  width: 0.55em;
  height: 0.55em;
}

.comparison-new__dots span:nth-child(4) {
  width: 0.7em;
  height: 0.7em;
}

.comparison-new__dots span:nth-child(5) {
  width: 0.85em;
  height: 0.85em;
}

.comparison-new__solution {
  background: linear-gradient(90deg, #E3D7FB 0%, #BBDCFB 100%);
  color: #165FAE;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 1rem 1.75rem 1rem 1rem;
  text-align: left;
  position: relative;
  box-shadow: 0 2px 16px rgba(44, 51, 128, 0.08);
  display: flex;
  align-items: center;
}

.comparison-new__check {
  margin-right: 0.5rem;
}

.comparison-new__check svg {
  width: 2rem;
  height: 2rem;
  display: block;
}

.comparison-new__solution svg {
  display: block;
}

@media (max-width: 900px) {
  .comparison-new__table {
    max-width: 99vw;
    gap: 0.7rem;
  }

  .comparison-new__row {
    grid-template-columns: 1fr 0.2fr 2fr;
    gap: 0 0.4rem;
  }

  .comparison-new__problem {
    text-align: center;
    padding-left: 0.85em;
  }

  .comparison-new__solution {
    padding-left: 2.1em;
    background: linear-gradient(90deg, #4ca6ff 0%, #c7e0ff 100%);
    color: #15518d;
  }
}

@media (max-width: 600px) {
  .comparison-new {
    padding: 2.1rem 0 1.1rem 0;
  }

  .comparison-new__heading {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    padding: 0 0.2em;
  }

  .comparison-new__table {
    gap: 0.45rem;
  }

  .comparison-new__row {
    grid-template-columns: 1fr 0.17fr 1.6fr;
    gap: 0 0.15rem;
  }

  .comparison-new__problem,
  .comparison-new__solution {
    font-size: 0.87rem;
    border-radius: 12px;
    padding: 0.65em 0.6em 0.65em 1.7em;
  }

  .comparison-new__problem {
    text-align: center;
    padding-left: 0.6em;
  }

  .comparison-new__solution {
    padding-left: 1.7em;
  }

  .comparison-new__check {
    left: 0.5em;
  }
}

/* Trial Section (Pricing/Testimonial) */
.trial-section {
  background: linear-gradient(120deg, #d5e2f7 0%, #b2d0f7 40%, #a5d0ff 100%);
  padding: 3.5rem 2vw 2.5rem 2vw;
  text-align: center;
}

.trial-heading {
  color: #265cb3;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  letter-spacing: 0.01em;
}

.trial-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(44, 51, 128, 0.09);
  max-width: 370px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trial-card__header {
  background: #156cb3;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 1.1em 0;
  border-radius: 22px 22px 0 0;
  width: 100%;
  text-align: center;
}

.trial-features {
  list-style: none;
  padding: 1.5rem 0 1rem 0;
  margin: 0;
}

.trial-features li {
  color: #265cb3;
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 0.7em;
  position: relative;
  padding-left: 1.1em;
  text-align: left;
}

.trial-features li::before {
  content: '\2022';
  color: #15518d;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0.04em;
}

.trial-btn {
  background: #e1e6fa;
  color: #265cb3;
  border: none;
  border-radius: 22px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 1rem 2.2rem;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 2px 10px rgba(44, 51, 128, 0.07);
  text-decoration: none;
}

.trial-price {
  color: #265cb3;
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 1.5em;
}

.trial-btn:hover {
  background: #d0e0fa;
}

.trial-quote {
  color: #265cb3;
  font-size: 1.25rem;
  font-weight: 500;
  font-style: normal;
  margin: 3rem auto 0.8rem auto;
  max-width: 650px;
  line-height: 1.36;
}

.trial-quote__author {
  display: inline-block;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 0.1em;
  color: #265cb3;
}

@media (max-width: 600px) {
  .trial-section {
    padding: 2.1rem 2vw 1.5rem 2vw;
  }

  .trial-card {
    max-width: 98vw;
    border-radius: 14px;
  }

  .trial-card__header {
    border-radius: 14px 14px 0 0;
    font-size: 1rem;
  }

  .trial-heading {
    font-size: 1.08rem;
  }

  .trial-quote {
    font-size: 1.01rem;
    padding: 0 0.2em;
  }
}

/* FAQ SECTION (custom grid layout) */
.faq-section {
  background: #fff;
  padding: 2.5rem 2vw 2.5rem 2vw;
}

.faq-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #005FA8;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.faq-grid {
  display: flex;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.faq-list {
  flex: 1 1 0;
  min-width: 340px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.faq-item {
  border: 1px solid #005FA8;
  border-radius: 3px;
  box-shadow: none;
  overflow: visible;
  padding: 0.7rem 1.6rem 0.7rem 1rem;
  background: #fff;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: 0 4px 16px rgba(0, 95, 168, 0.13);
  border-color: #005FA8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #005FA8;
  padding: 0;
  text-align: left;
  display: flex;
  align-items: center;
  position: relative;
  transition: background 0.13s;
}

.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.35em;
  color: #005FA8;
  transition: transform 0.22s cubic-bezier(.4, 2, .6, 1);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

/* Remove old checkmark */
.faq-question::before {
  display: none !important;
  content: none !important;
}

.faq-question[aria-expanded="true"] {
  background: none;
  border-bottom: none;
}

.faq-answer {
  margin-top: 1.2em;
  padding: 1em 0 0.7em 0;
  color: #005FA8;
  font-size: 1rem;
  font-weight: 400;
  background: #fff;
  border-top: 1px solid #005FA8;
  animation: fadeInFaq 0.22s;
}

.faq-answer .faq-margin {
  margin: 0 0 0 1.5rem;
}

@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.faq-image-col {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 320px;
}

.faq-image {
  width: 420px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(44, 51, 128, 0.13);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (max-width: 950px) {
  .faq-grid {
    flex-direction: column;
    gap: 2.2rem;
    align-items: stretch;
  }

  .faq-image-col {
    justify-content: center;
    margin-top: 0.5em;
  }
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 1.3rem;
  }

  .faq-list {
    min-width: 0;
    max-width: 100vw;
  }

  .faq-image {
    width: 100vw;
    min-width: 0;
    border-radius: 24px;
  }
}

/* Footer */
.footer {
  background: #156CB3;
  color: #fff;
  padding: 0.7rem 2vw 0.7rem 2vw;
  font-size: 0.88rem;
}

.footer .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 1.3em;
}

.footer__logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -1px;
}

.footer__brand {
  margin-left: 0.3em;
  font-size: 0.96em;
}

.footer__copyright {
  font-size: 0.85rem;
  color: #e0e6f0;
  margin-left: 1em;
}

.footer__nav {
  display: flex;
  gap: 2.6em;
}

.footer__nav a {
  color: #e0e6f0;
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.18s;
}

.footer__nav a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7em;
    padding: 1.1em 2vw;
    font-size: 0.97rem;
  }

  .footer__left {
    justify-content: center;
    margin-bottom: 0.2em;
  }

  .footer__nav {
    justify-content: center;
    gap: 1.2em;
    flex-wrap: wrap;
  }
}

/* Responsive */
@media (max-width: 900px) {

  .hero,
  .features {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 4vw 2rem 4vw;
  }
}

@media (max-width: 600px) {
  .header {
    flex-direction: column;
    gap: 0.7em;
    padding: 1em 4vw;
  }

  .hero__image img {
    width: 98vw;
    max-width: 98vw;
  }

  .features {
    padding: 2rem 3vw 1.5rem 3vw;
  }

  .comparison-table {
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 0.98rem;
  }
}

.submit-btn {
  background: #0667b6;
  color: #fff;
  border: none;
  border-radius: 1000px;
  padding: 0.48em 1.5em;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(44, 51, 128, 0.06);
  text-align: center;
  outline: none;
  display: inline-block;
  transition: background 0.15s;
  cursor: pointer;
  width: 100%;
  margin-top: 1.5rem;
}

.submit-btn:hover,
.submit-btn:focus {
  background: #15518d;
}

.signup-main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-form {
  background: #fff;
  padding: 2.5rem 2.2rem;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(44, 51, 128, 0.07);
  min-width: 320px;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.signup-title {
  font-size: 2.6rem;
  font-weight: 600;
  color: #0667b6;
  margin-bottom: 0.7rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-align: center;
}

.signup-fieldset {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
  width: 100%;
}

.signup-label {
  font-weight: 600;
  color: #1665c1;
}

.signup-input {
  padding: 0.7em;
  border-radius: 7px;
  border: 1px solid #b3c7e6;
  margin-top: 0.3em;
  font-size: 1.05rem;
}