/* Public contact page styles */
:root {
  --purple: #9114FF;
  --pink: #FF5FC4;
}

.contact-page {
  text-align: center;
  animation: fadeIn 0.6s ease-in;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 600px) {
  .contact-form {
    margin: 0 16px;
  }
}

.contact-form .field {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--purple);
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 2px solid var(--purple);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 4px var(--pink);
  outline: none;
}

.contact-form button {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease-in-out, opacity 0.2s;
}

.contact-form button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.status {
  min-height: 1em;
  color: var(--purple);
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
