
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
}


header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px 30px;
}

.logo img {
  width: 70px;
}

h1 {
  font-size: 24px;
  font-weight: bold;
}


.conteudo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  padding: 20px 60px;
}


.formulario {
  display: flex;
  flex-direction: column;
  width: 350px;
}

label {
  margin: 10px 0 5px;
  font-weight: bold;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
}

textarea {
  resize: none;
}


.imagem img {
  width: 350px;
  border-radius: 8px;
}


.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 30px;
  border: 2px solid #006400;
  border-radius: 10px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  background: none;
  color: black;
  text-align: center;
  margin-top: 10px;
}

.btn:hover {
  background: #006400;
  color: white;
  transition: 0.3s;
}

.voltar {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}