﻿:root {
  --bg: #fefbf7;
  --sand: #f6f0e6;
  --shell: #fffaf2;
  --wine: #7e2f3d;
  --berry: #b04b5f;
  --sea: #1f4d6b;
  --text: #2f2a28;
  --muted: #6c6460;
  --accent: #f2c572;
  --shadow: 0 15px 40px rgba(31, 77, 107, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', serif;
  margin: 0 0 1rem;
  color: var(--sea);
}

p {
  margin-top: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 10;
}

.btn.primary {
  background: linear-gradient(135deg, var(--berry), var(--wine));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--text);
  background: transparent;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.text-link {
  font-weight: 600;
  color: var(--berry);
  text-decoration: none;
}

header.hero {
  position: relative;
  padding: 1.5rem clamp(1.5rem, 4vw, 6rem) 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(254, 251, 247, 0.7) 0%,
    rgba(254, 251, 247, 0.85) 40%,
    rgba(254, 251, 247, 0.95) 100%
  );
}

.hero-overlay {
  position: relative;
  z-index: 30;
  margin: auto;
  text-align: center;
  color: #1f1f1f;
  background: rgba(254, 251, 247, 0.8);
  padding: 2rem 3rem;
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  max-width: 640px;
}

.hero-overlay h1 {
  font-size: clamp(3.2rem, 6vw, 5rem);
  margin-bottom: 0.5rem;
}

.hero-logo {
  width: 72px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.site-nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  z-index: 100;
  position: relative;
}

.site-nav.sticky {
  background: rgba(254, 251, 247, 0.92);
  backdrop-filter: blur(10px);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0.2rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
  position: relative;
  z-index: 10;
}

.hero-details .hero-grid {
  margin-top: 0;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text {
  position: relative;
  z-index: 10;
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-text h1,
.hero-text h2 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.hero-text .eyebrow,
.hero-text .hero-meta,
.hero-text .intro {
  text-shadow: none;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.hero-badges li {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(31, 77, 107, 0.08);
  border: 1px solid rgba(31, 77, 107, 0.15);
  font-weight: 600;
  color: var(--sea);
}

.hero-badges li span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.hero-meta {
  font-weight: 600;
  color: var(--muted);
}

.intro {
  font-size: 1.1rem;
  max-width: 38ch;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-cards article {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-highlights {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.hero-highlights article {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.location-card .location-map {
  margin-top: 1rem;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.location-card .location-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.location-card .location-map figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-highlights .location-card {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .hero-highlights .location-card {
    grid-column: span 1;
  }
}

.dresscode-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dresscode-heading h3 {
  margin: 0;
}

.dresscode-palette {
  display: flex;
  gap: 0.45rem;
}

.dresscode-palette span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--tone);
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.dresscode-materials {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dresscode-materials li {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

.dresscode-looks {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.dresscode-looks figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dresscode-looks figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(31, 77, 107, 0.2);
}

.dresscode-looks img {
  width: 100%;
  display: block;
  height: 150px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .location-card {
    grid-column: span 1;
  }
}

.hero-photo {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  min-height: 360px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -120px 120px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.map-card {
  position: relative;
  z-index: 10;
  background: #fff;
}

.map-card iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 1rem;
}

.hero-scroll {
  margin: 2rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sea);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  z-index: 20;
}

.hero-scroll::after {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.section {
  padding: clamp(3rem, 10vw, 6rem) clamp(1.5rem, 4vw, 6rem);
}

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

.section--sand {
  background: var(--sand);
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

/* Family Story Section */
.family-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
  padding: 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.family-photo {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
}

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

.family-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--sea);
}

.family-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

@media (max-width: 768px) {
  .family-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Location Showcase */
.location-showcase {
  margin: 4rem 0 3rem;
}

.location-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.location-intro h3 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.location-intro p {
  font-size: 1.1rem;
  color: var(--muted);
}

.location-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  grid-auto-flow: dense;
}

.location-photo {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.location-photo.span-2 {
  grid-column: span 2;
}

.location-photo.tall {
  grid-row: span 2;
}

.location-photo.wide {
  grid-column: span 3;
}

.location-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(31, 77, 107, 0.18);
}

@media (max-width: 900px) {
  .location-photo.wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .location-photo,
  .location-photo.span-2,
  .location-photo.wide {
    grid-column: span 1;
  }

  .location-photo.tall {
    grid-row: span 1;
  }
}

.story-grid,
.travel-grid,
.stay-grid,
.rsvp-grid {
  display: grid;
  gap: 1.5rem;
}

.story-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.story-grid article {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.story-grid ul,
.travel-grid ul,
.stay-card ul {
  padding-left: 1.2rem;
}

/* Warm-Up Section */
.warmup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.warmup-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.warmup-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(31, 77, 107, 0.12);
}

.warmup-photo {
  margin: 0 0 1rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.warmup-photo img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.warmup-photo--center img {
  object-position: center 70%;
}

.warmup-header {
  margin-bottom: 1rem;
}

.warmup-day {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, var(--berry), var(--wine));
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.warmup-card h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.5rem;
}

.warmup-card p {
  color: var(--muted);
  line-height: 1.7;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(176, 75, 95, 0.05);
  border-left: 3px solid var(--berry);
  border-radius: 0.5rem;
}

.agenda {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.agenda-range {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.2rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.agenda-range span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.agenda-range div {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sea);
}

.agenda-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.agenda-items article {
  padding: 1.25rem 1.5rem;
  border-radius: 1.2rem;
  background: rgba(254, 251, 247, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(31, 77, 107, 0.08);
}

.agenda-items h3 {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.agenda-items p {
  color: var(--muted);
  line-height: 1.65;
}

.card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card.highlight {
  border: 2px solid rgba(176, 75, 95, 0.2);
}

.travel-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.stay-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.stay-card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stay-card.highlight {
  border: 2px solid var(--berry);
  background: linear-gradient(135deg, rgba(176, 75, 95, 0.02), rgba(31, 77, 107, 0.02));
}

.moodboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.moodboard figure {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 330px;
}

.moodboard figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(31, 77, 107, 0.15);
}

.moodboard figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem 1.25rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .moodboard {
    grid-template-columns: 1fr;
  }

  .moodboard figure {
    height: 260px;
  }
}

.rsvp-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.3rem;
}

form input,
form select,
form textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: 2px solid rgba(176, 75, 95, 0.25);
}


.registry {
  background: var(--shell);
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.footer {
  background: #111218;
  color: rgba(255, 255, 255, 0.8);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 2.5rem clamp(1.5rem, 4vw, 6rem);
  text-align: center;
}

.footer a {
  color: inherit;
}

.footer .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.footer p {
  margin: 0.3rem 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 1.5rem;
    flex-direction: column;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    flex-direction: column;
  }

  .hero-overlay {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 1.25rem;
  }

  header.hero {
    padding-bottom: 2rem;
    min-height: auto;
  }

  .hero-overlay {
    padding: 1.25rem;
  }

  .hero-video-overlay {
    background: linear-gradient(
      to bottom,
      rgba(254, 251, 247, 0.8) 0%,
      rgba(254, 251, 247, 0.9) 30%,
      rgba(254, 251, 247, 0.95) 100%
    );
  }
}

/* Google Forms iframe Wrapper */
.google-form-wrapper {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.google-form-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 1950px;
}

@media (max-width: 768px) {
  .google-form-wrapper iframe {
    min-height: 1950px;
  }
}

/* PayPal Button */
.paypal-btn {
  display: inline-flex;
  width: 100%;
  margin: 1.5rem 0;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  justify-content: center;
}

.paypal-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(176, 75, 95, 0.3);
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease-in-out;
}

.image-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
  line-height: 1;
}

.modal-close:hover {
  color: var(--accent);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Password Protection Overlay */
.password-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--shell) 0%, var(--sand) 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.password-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.password-container {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.password-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

.password-container h2 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  color: var(--sea);
}

.password-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.password-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.password-form label {
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.password-form input {
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.password-form input:focus {
  outline: none;
  border-color: var(--berry);
}

.password-form button {
  margin-top: 0.5rem;
  width: 100%;
}

.password-error {
  color: var(--wine);
  font-size: 0.9rem;
  margin: 0;
  min-height: 1.2rem;
}

@media (max-width: 600px) {
  .password-container {
    padding: 2rem 1.5rem;
  }
  
  .password-container h2 {
    font-size: 2rem;
  }
}