/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Page */
body {
  min-height: 100vh;
  background: #f1f5f9;
  color: #020617;
}

/* Header */
.site-header {
  padding: 32px 16px 16px;
  text-align: center;
}

.brand {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Content */
.content {
  display: flex;
  justify-content: center;
  padding: 16px;
}

/* Card / Form */
form {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Inputs */
input,
textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #cbd5f5;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Focus */
input:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* Button */
button {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #1d4ed8;
}
