/* Base */
html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji;
}

/* Background logo */
.background-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
  width: 80%;
  max-width: 800px;
}

/* Layering */
main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* Forms */
form {
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(255 255 255 / 0.9);
}

form input,
form textarea {
  border: 1px solid #ccc;
}

form button {
  border: 1px solid #0bbf64;
  background-color: #0bbf64;
  color: white;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 0.5rem;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

form button:hover {
  background-color: #0a9e50;
  color: white;
  border-color: #0a9e50;
}

/* Mensagens de status */
#status {
  margin-top: 0.75rem;
  font-weight: 600;
  text-align: center;
}

#status.success {
  color: green;
}

#status.error {
  color: red;
}

