.form-container {
  padding: 0 0 120px 0;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

.form-group {
  margin-bottom: 30px;
}

label,
select {
  display: block;
  color: #2f348b;

  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 112% */
  margin-bottom: 10px;
}

select {
  background: #eaf4f9;
  font-size: 100%;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 18px 25px;
  border: none;
  border-radius: 50px;
  background-color: #eaf4f9;
  font-size: 16px;
  color: #2f348b;
  transition: all 0.3s ease;
}

textarea {
  border-radius: 30px;
  min-height: 180px;
  resize: vertical;
  font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  background-color: #eaf4f9;
}

.checkbox-group {
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label {
  color: #2f348b;
  text-align: justify;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px; /* 121.429% */
  cursor: pointer;
}

.checkbox-label a {
  color: #3d4d7a;
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  max-width: 400px;
  background: #ed1d6d;
  color: #fff;

  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 60px; /* 240% */
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: block;
  margin: 40px auto 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(237, 77, 140, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  cursor: not-allowed;
  transform: none;
}

.submit-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

.response-message {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  display: none;
}

.response-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
}

.response-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 2px solid #ef4444;
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .form-container {
    padding: 30px 25px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  label {
    font-size: 16px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    padding: 15px 20px;
  }
}
