/* Reset some default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
  background: #f7f9fc;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 15px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card header h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ff1493; /* accent color */
}

.card header .lead {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 25px;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 2px solid #ff1493;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #25d366; /* WhatsApp green */
  box-shadow: 0 0 6px rgba(37, 214, 102, 0.4);
}

form textarea {
  resize: vertical;
  min-height: 80px;
}

button.btn {
  width: 100%;
  padding: 14px;
  background: #25d366; /* WhatsApp green */
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

button.btn:hover {
  background: #128c4a;
  transform: translateY(-2px);
}

button.btn i {
  font-size: 20px;
}

p.small {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

p.small a {
  color: #ff1493;
  text-decoration: none;
}

p.small a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .card {
    padding: 20px;
  }

  .card header h1 {
    font-size: 24px;
  }

  button.btn {
    font-size: 16px;
    padding: 12px;
  }
}
