body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #ffe6e6;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10,30 A20,20 0 0,1 50,30 A20,20 0 0,1 90,30 Q90,60 50,90 Q10,60 10,30 Z' fill='%23ff99aa' fill-opacity='0.3' /%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  text-align: center;
}

.container {
  background: linear-gradient(145deg, #ffcccc, #ff9999);
  max-width: 800px;
  margin: 100px auto;
  padding: 40px;
  box-shadow: 0 0 30px rgba(255, 105, 105, 0.5);
  border-radius: 24px;
  position: relative;
}

label {
  display: block;
  margin: 20px 0 10px;
  font-weight: bold;
  color: #660000;
}

input[type="text"],
input[type="date"],
input[type="email"],
textarea {
  width: 90%;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #ffcccc;
  border-radius: 8px;
  font-size: 32px; /* Increased font size */
}

button {
  background: #ff4d4d;
  color: #fff;
  border: none;
  padding: 20px 40px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 32px;
  margin: 10px;
}

button:hover {
  background: #e60000;
}

.result {
  margin-top: 40px;
  font-size: 36px;
  color: #660000;
}

.share-container,
.signup-container {
  margin-top: 40px;
}

.share-container {
  display: none;
}

.share-via-label {
  font-size: 32px;
  color: #660000;
  margin-bottom: 20px;
}

.icon-container {
  display: inline-flex;
  gap: 40px;
  justify-content: center;
}

.share-icon {
  display: inline-block;
  cursor: pointer;
}

.share-icon-img {
  width: 64px;
  height: 64px;
}

.signup-container {
  display: none;
  background: #fff;
  border: 1px solid #ffcccc;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(255, 105, 105, 0.3);
}

.signup-container h2 {
  font-size: 36px;
  color: #660000;
  margin-bottom: 20px;
}

.follow {
  font-size: 28px;
  color: #b30000;
  font-weight: bold;
  margin-top: 40px;
}

.follow a + a {
  margin-left: 20px;
}

.follow-icon {
  width: 48px;
  height: 48px;
  vertical-align: middle;
}

.disclaimer {
  font-size: 24px;
  color: #660000;
  margin-top: 20px;
}

.test-button {
  background: #990000;
  color: #fff;
  margin-bottom: 30px;
}

.test-button:hover {
  background: #800000;
}

/* Mobile adjustments */
@media only screen and (max-width: 600px) {
  body {
    padding: 10px;
  }
  .container {
    width: 95%;
    margin: 10px auto;
    padding: 20px;
    min-height: 70vh;
  }
  input[type="text"],
  input[type="date"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    font-size: 32px;
  }
  button {
    padding: 16px 32px;
    font-size: 28px;
  }
  .result {
    font-size: 32px;
  }
}
