body {
  font-family: Arial, sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 0;

  background-image: url(A4-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



.container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #015ce4;
  margin-bottom: 10px;
  text-align: center;
}

.descricao {
  margin-bottom: 20px;
  font-size: 14px;
  color: #444;
  text-align: center;
}

label {
  margin-top: 15px;
  display: block;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #015ce4;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #ff399c;
}

#status {
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

@media (max-width: 600px) {
  .container {
    margin: 20px;
    padding: 20px;
  }
}
