* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
}

body {
  background: linear-gradient(120deg, #8e2de2, #4a00e0);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.container {
  background: white;
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  text-align: center;
}

h1 {
  color: #2c3e50;
  margin-bottom: 24px;
  font-size: 24px;
}

input, textarea, button {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border-radius: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
}

textarea {
  height: 130px;
  resize: none;
}

button {
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

button:hover {
  opacity: 0.92;
}

#confession-link {
  background: #f8f9fa;
  font-size: 14px;
}

@media (max-width: 500px) {
  .container {
    padding: 24px;
  }
}