/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom right, #ff7eb3, #ff758c, #ff6a00);
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Container */
.container {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

h1 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.intro-text {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #fffbe7;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, button {
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
}

input, textarea {
  background: #fff;
  color: #000;
}

textarea {
  resize: none;
  height: 100px;
}

button {
  background: #ffeb3b;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background: #ffc107;
  transform: scale(1.05);
}

#formStatus {
  margin-top: 1rem;
  font-size: 1.1rem;
}
