@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --bg: #f5f6fb;
  --bg-soft: #eef1f8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --text: #212c55;
  --muted: #56628a;
  --accent: #e9bd5c;
  --accent-dark: #d7a947;
  --sage: #95a3c5;
  --rose: #d9c7b0;
  --line: #d8deed;
  --ok: #2f7a55;
  --danger: #a83f3f;
  --shadow: 0 20px 45px rgba(33, 44, 85, 0.14);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 0% 0%, rgba(233, 189, 92, 0.2), transparent),
    radial-gradient(1200px 500px at 100% 0%, rgba(33, 44, 85, 0.14), transparent),
    var(--bg);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(33, 44, 85, 0.96);
  border-bottom: 1px solid rgba(233, 189, 92, 0.35);
}

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

.brand {
  text-decoration: none;
}

.brand-mark {
  letter-spacing: 0.25rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
  font-family: var(--body-font);
}

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
}

.header-nav {
  display: flex;
  gap: 1rem;
}

.header-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 28, 58, 0.34), rgba(19, 28, 58, 0.52)),
    linear-gradient(120deg, rgba(233, 189, 92, 0.14), rgba(33, 44, 85, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 860px;
  padding: 6rem 0 4rem;
}

.hero-content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.hero-content p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.72rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta-center {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.shape {
  position: absolute;
  border-radius: 999px;
  z-index: 1;
  filter: blur(4px);
}

.shape-a {
  width: 230px;
  height: 230px;
  right: 10%;
  top: 20%;
  background: rgba(233, 189, 92, 0.25);
}

.shape-b {
  width: 150px;
  height: 150px;
  left: 8%;
  bottom: 16%;
  background: rgba(33, 44, 85, 0.22);
}

.status-pill {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(5px);
}

.egg {
  position: absolute;
  z-index: 3;
  width: 40px;
  height: 52px;
  border: none;
  border-radius: 50% 50% 48% 48% / 58% 58% 42% 42%;
  background: linear-gradient(145deg, #f8d98f, #e9bd5c);
  box-shadow: 0 8px 20px rgba(30, 20, 10, 0.26);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.egg.is-deco {
  cursor: default;
  pointer-events: none;
  opacity: 0.88;
}

.egg.is-yellow {
  background: linear-gradient(145deg, #f8d98f, #e9bd5c);
}

.egg.is-blue {
  background: linear-gradient(145deg, #3a4b83, #212c55);
}

.egg::before {
  display: none;
}

.egg:hover,
.egg:focus-visible {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 24px rgba(30, 20, 10, 0.35);
}

.egg-1 {
  left: 8%;
  bottom: 24%;
}

.egg-2 {
  right: 14%;
  bottom: 18%;
}

.egg-3 {
  left: 24%;
  top: 30%;
}

.egg-4 {
  right: 10%;
  top: 24%;
}

.egg-5 {
  left: 46%;
  bottom: 14%;
}

.op-egg-1 {
  left: 6%;
  top: 18%;
}

.op-egg-2 {
  right: 7%;
  top: 32%;
}

.op-egg-3 {
  left: 15%;
  bottom: 10%;
}

.op-egg-4 {
  right: 22%;
  bottom: 16%;
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.section.has-eggs .container {
  position: relative;
}

.section.has-eggs .container > :not(.section-egg) {
  position: relative;
  z-index: 2;
}

.section-egg {
  position: absolute;
  width: 28px;
  height: 38px;
  z-index: 3;
  opacity: 0.92;
}

.sec-egg-lt {
  left: -8px;
  top: 10px;
}

.sec-egg-lm {
  left: -10px;
  top: 42%;
}

.sec-egg-lb {
  left: -8px;
  bottom: 16px;
}

.sec-egg-rt {
  right: -8px;
  top: 8px;
}

.sec-egg-rm {
  right: -10px;
  top: 46%;
}

.sec-egg-rb {
  right: -8px;
  bottom: 12px;
}

.sec-egg-ct {
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
}

.sec-egg-cm {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sec-egg-cb {
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(238, 241, 248, 0.85));
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.clean-list {
  list-style: none;
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  color: var(--muted);
}

.clean-list li {
  margin-bottom: 0.5rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(33, 44, 85, 0.15);
  box-shadow: 0 8px 24px rgba(33, 44, 85, 0.08);
}

.card h3 {
  margin-top: 0;
}

.cards-premium .card-premium {
  position: relative;
  overflow: hidden;
  padding-top: 2.7rem;
  background:
    linear-gradient(165deg, rgba(33, 44, 85, 0.9), rgba(45, 59, 106, 0.82) 55%, rgba(233, 189, 92, 0.24));
  border: 1px solid rgba(233, 189, 92, 0.42);
  box-shadow: 0 16px 30px rgba(33, 44, 85, 0.24);
  color: #f7f8ff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cards-premium .card-premium::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(233, 189, 92, 0.2), rgba(233, 189, 92, 0.01) 70%);
}

.cards-premium .card-premium:hover,
.cards-premium .card-premium:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(33, 44, 85, 0.32);
  border-color: rgba(233, 189, 92, 0.75);
}

.cards-premium .card-premium h3 {
  color: #ffffff;
}

.cards-premium .card-premium p {
  color: rgba(242, 246, 255, 0.9);
}

.card-icon {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  min-width: 46px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(233, 189, 92, 0.95);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0.7rem;
  box-shadow: 0 8px 16px rgba(233, 189, 92, 0.28);
}

.cards-photo .card-photo {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(33, 44, 85, 0.18);
  box-shadow: 0 14px 30px rgba(33, 44, 85, 0.2);
  color: #f6f8ff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cards-photo .card-photo:hover,
.cards-photo .card-photo:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(33, 44, 85, 0.3);
  border-color: rgba(233, 189, 92, 0.62);
}

.card-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.card-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(33, 44, 85, 0.24), rgba(33, 44, 85, 0.86)),
    linear-gradient(135deg, rgba(233, 189, 92, 0.1), rgba(233, 189, 92, 0.02));
}

.card-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  background: rgba(233, 189, 92, 0.95);
  box-shadow: 0 8px 16px rgba(233, 189, 92, 0.3);
  margin-bottom: 0.75rem;
}

.cards-photo .card-photo h3,
.cards-photo .card-photo p {
  position: relative;
  z-index: 2;
}

.icon-grid {
  gap: 1.25rem;
}

.icon-item {
  position: relative;
  padding: 1.25rem 1.1rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 244, 252, 0.96));
  border: 1px solid rgba(33, 44, 85, 0.16);
  box-shadow: 0 12px 28px rgba(33, 44, 85, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.icon-item:hover,
.icon-item:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(33, 44, 85, 0.16);
  border-color: rgba(233, 189, 92, 0.6);
}

.pictogram {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  background: linear-gradient(145deg, rgba(233, 189, 92, 0.95), rgba(246, 208, 128, 0.95));
  box-shadow: 0 8px 18px rgba(233, 189, 92, 0.32);
}

.pictogram svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-item h3 {
  margin: 0 0 0.45rem;
}

.icon-item p {
  margin: 0;
  color: var(--muted);
}

.small-note {
  margin-top: 0.45rem !important;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #6a7496 !important;
}

.enigmes-block {
  margin-top: 1.4rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 244, 252, 0.98));
  border: 1px solid rgba(33, 44, 85, 0.14);
  box-shadow: 0 10px 24px rgba(33, 44, 85, 0.08);
  position: relative;
}

.enigme-egg-1 {
  right: 0.8rem;
  top: 1rem;
  width: 30px;
  height: 40px;
}

.enigme-egg-2 {
  right: 4.6rem;
  top: 2.1rem;
  width: 24px;
  height: 32px;
}

.enigmes-intro {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

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

.enigmes-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 0.55rem;
  color: var(--text);
}

.puzzle-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(233, 189, 92, 0.95);
  box-shadow: 0 6px 12px rgba(233, 189, 92, 0.28);
}

.puzzle-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.enigmes-accordion {
  display: grid;
  gap: 0.65rem;
}

.enigme-item {
  border: 1px solid rgba(33, 44, 85, 0.14);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.enigme-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 30px 1fr 18px;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0.8rem 0.9rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
}

.enigme-trigger::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  justify-self: end;
  line-height: 1;
}

.enigme-trigger:hover,
.enigme-trigger:focus-visible {
  background: rgba(33, 44, 85, 0.04);
  outline: none;
}

.enigme-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 0.9rem;
}

.enigme-item.is-open .enigme-trigger::after {
  content: "-";
}

.enigme-panel p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.enigme-panel p:first-child {
  margin-top: 0.2rem;
}

.enigme-panel p:last-child {
  margin-bottom: 0.9rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.8rem 1.35rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(140deg, var(--accent), #f2c76b);
  color: var(--text);
  box-shadow: 0 8px 22px rgba(233, 189, 92, 0.36);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(140deg, var(--accent-dark), var(--accent));
}

.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  transform: none !important;
  opacity: 0.55;
  box-shadow: none;
  filter: grayscale(0.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(33, 44, 85, 0.24);
  color: var(--text);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.9);
}

.btn-submit {
  margin-top: 1rem;
  width: 100%;
}

.btn-loader {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 2px solid rgba(33, 44, 85, 0.24);
  border-top-color: var(--text);
  display: none;
  animation: spin 0.8s linear infinite;
}

.btn.is-loading .btn-loader {
  display: inline-block;
}

.btn.is-loading .btn-text {
  opacity: 0.8;
}

.btn.is-success {
  background: linear-gradient(140deg, var(--ok), #4b9b72);
}

.cta-inline {
  margin-bottom: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.step {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(33, 44, 85, 0.15);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.step-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(233, 189, 92, 0.95);
  box-shadow: 0 6px 12px rgba(233, 189, 92, 0.28);
}

.step-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--text);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-card,
.thank-card,
.legal-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(33, 44, 85, 0.18);
  box-shadow: var(--shadow);
  background: var(--surface-solid);
  padding: clamp(1.3rem, 2.6vw, 2.2rem);
}

.form-card {
  position: relative;
}

.form-egg-1 {
  right: 0.9rem;
  top: 0.8rem;
  width: 34px;
  height: 46px;
}

.form-egg-2 {
  right: 5rem;
  top: 2.2rem;
  width: 26px;
  height: 36px;
}

.thank-card h1,
.legal-card h1,
.form-card h2 {
  margin-top: 0;
}

.form-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.required-star {
  color: var(--danger);
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select {
  width: 100%;
  min-height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(233, 189, 92, 0.28);
}

.field select:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(233, 189, 92, 0.28);
}

.field input.is-invalid {
  border-color: var(--danger);
}

.field input.is-valid {
  border-color: var(--ok);
}

.field select.is-invalid {
  border-color: var(--danger);
}

.field select.is-valid {
  border-color: var(--ok);
}

.field-full {
  grid-column: 1 / -1;
}

.error {
  display: block;
  min-height: 1.1rem;
  color: var(--danger);
  font-size: 0.8rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.9rem;
  color: var(--muted);
}

.checkbox input {
  margin-top: 0.18rem;
}

.notice {
  margin-top: 0.9rem;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(168, 63, 63, 0.09);
  color: var(--danger);
  border: 1px solid rgba(168, 63, 63, 0.2);
}

.form-legal {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 1.3rem 0 1.6rem;
  border-top: 1px solid rgba(33, 44, 85, 0.16);
}

.footer-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-inner a {
  margin-left: 0.8rem;
  text-decoration: none;
  color: var(--muted);
}

.form-legal a,
.legal-card a,
.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

#confetti-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 90;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

  .grid-3,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 62vh;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1140px, calc(100% - 1.35rem));
  }

  .header-inner {
    min-height: 64px;
  }

  .hero-content {
    padding: 4rem 0 3rem;
  }

  .grid-3,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .egg {
    width: 35px;
    height: 46px;
  }

  .egg-1 {
    left: 6%;
    bottom: 17%;
  }

  .egg-2 {
    right: 10%;
    bottom: 12%;
  }

  .egg-3 {
    left: 16%;
    top: 24%;
  }

  .egg-4,
  .op-egg-4,
  .form-egg-2 {
    display: none;
  }

  .section-egg {
    width: 24px;
    height: 32px;
  }

  .sec-egg-lt,
  .sec-egg-lm,
  .sec-egg-lb {
    left: 2px;
  }

  .sec-egg-rt,
  .sec-egg-rm,
  .sec-egg-rb {
    right: 2px;
  }

  .sec-egg-ct,
  .sec-egg-cm,
  .sec-egg-cb {
    left: 50%;
  }

  .form-egg-1 {
    right: 0.8rem;
    top: 0.8rem;
    width: 28px;
    height: 38px;
  }
}
