/* Kawaii Style CSS */
body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', Arial, sans-serif;
  background: #FFF6FB;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.kawaii-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  background: repeating-radial-gradient(circle at 20% 30%, #FFD6EC 0 10px, transparent 12px 40px),
              repeating-radial-gradient(circle at 80% 70%, #B5EAD7 0 8px, transparent 10px 40px),
              repeating-radial-gradient(circle at 60% 20%, #C7CEEA 0 6px, transparent 8px 40px),
              #FFF6FB;
  opacity: 0.5;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 48px auto;
  background: #FFD6EC;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(255, 182, 193, 0.18);
  padding: 32px 24px 24px 24px;
  box-sizing: border-box;
  text-align: center;
}

.header {
  margin-bottom: 24px;
}

.header .emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}

.header h1 {
  color: #FF69B4;
  font-size: 2.2rem;
  margin: 0 0 8px 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.header p {
  color: #6D6875;
  font-size: 1.1rem;
  margin: 0;
}

.form-section {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.form-section iframe {
  border-radius: 24px;
  border: 4px solid #B5EAD7;
  box-shadow: 0 4px 16px rgba(199, 206, 234, 0.18);
  width: 100%;
  max-width: 640px;
  min-height: 400px;
  background: #FFF;
  transition: box-shadow 0.2s;
}

@media (max-width: 700px) {
  .container {
    margin: 16px;
    padding: 16px 4px 12px 4px;
  }
  .form-section iframe {
    min-width: 0;
    width: 100%;
    height: 340px;
    max-width: 100%;
  }
}
