body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f3f0 0%, #ede8e3 100%);
  font-family: 'Quicksand', sans-serif;
  overflow-y: auto;
  position: relative;
}

/* Decorative background shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}
.shape-1 {
  width: 65px;
  height: 65px;
  background: linear-gradient(45deg, #a78bfa, #c4b5fd);
  top: -30px;
  left: -30px;
}
.shape-2 {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #fb7185, #fda4af);
  top: 20px;
  right: -25px;
}
.shape-3 {
  width: 32px;
  height: 32px;
  background: linear-gradient(45deg, #c4b5fd, #ddd6fe);
  bottom: 30px;
  left: -20px;
}
.shape-4 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #fda4af, #fecaca);
  bottom: -24px;
  right: 30px;
}
.shape-5 {
  width: 54px;
  height: 54px;
  background: linear-gradient(45deg, #ddd6fe, #e0e7ff);
  bottom: 60px;
  right: -28px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  gap: 2rem;
}

.image-container {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.web-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.mobile-image {
  display: none;
}

.form-container {
  flex: 1;
  max-width: 50%;
  position: relative;
  z-index: 1;
}

.outside-text {
  text-align: center;
  color: #fb7185;
  font-size: 3rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  width: fit-content;
}

.form-shadow {
  background: none;
  padding: 0;
  border-radius: 0;
}

.form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 12px 12px 0px #6366f1, 0px 4px 20px rgba(99, 102, 241, 0.15);
  transform: translate(-6px, -6px);
  width: 370px;
  max-width: 90vw;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  font-size: 1rem;
  box-sizing: border-box;
  background: #fefefe;
  transition: border 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: #ff5a3c;
}

button {
  width: 100%;
  background: #ff5a3c;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  padding: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background: #e9482d;
}

.confirmation-message {
  margin-top: 1rem;
  color: #4caf50;
  font-size: 1rem;
  font-weight: 500;
}

.disclaimer {
  font-size: 0.92rem;
  font-style: italic;
  color: #a0a0a0;
  margin-top: -1rem;
  margin-bottom: 1.2rem;
  text-align: left;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.photo-credit {
  font-style: italic;
  text-align: center;
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #666;
}

.photo-credit a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.photo-credit a:hover {
  color: #ff5a3c;
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 1rem;
    overflow-x: hidden;
    gap: 2rem
  }

  .image-container,
  .form-container {
    max-width: 100%;
  }

  .web-image {
    display: none;
  }

  .mobile-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .form-wrapper {
    padding: 1.75rem;
    width: auto;
  }

  .outside-text {
    display: none;
  }

  h1 {
    font-size: 1.5rem;
  }
}
