body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #ff4e50, #f9d423);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form-container {
  background: white;
  padding: 1.25rem; /* reduced from 2rem */
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  width: 100%;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input, textarea {
  width: 100%;
  max-width: 300px;
  padding: 0.6rem; /* reduced from 0.75rem */
  margin: 0.4rem 0; /* reduced vertical spacing */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

button {
  background: #ff4e50;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem; /* reduced button size */
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.8rem;
  transition: background 0.3s ease;
}

button:hover {
  background: #e03e3e;
}

/* Honeypot hidden */
.honeypot {
    display: none;
}

#formStatus {
  margin-top: 1rem;
  font-weight: bold;
  color: #c0392b; /* deep red */
  background-color: #fbeaea;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #e74c3c;
  max-width: 320px;
  text-align: center;
}

.login-hero-header {
  width: 100vw;
  text-align: center;
  margin-top: -2em;
  margin-bottom: -1.5em;
  z-index: 2;
}

.login-hero-center {
  display: flex;
  margin-top: -6em;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

#sendBtn:disabled {
  background-color: #ccc;
  color: #666;
  border: 1px solid #aaa;
  cursor: not-allowed;
  opacity: 0.6;
  transition: background-color 0.3s ease;
}

#sendBtn {
  background-color: #3498db;
  color: white;
  border: 1px solid #2980b9;
  padding: 0.5em 1.2em;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}