
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  position: relative;
}

header .logo {
  position: absolute;
  left: 20px;
}

header img {
  height: 70px;
}

header h1 {
  font-size: 28px;
  font-weight: bold;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 80%;
  margin-top: 30px;
}

.formulario {
  flex: 1;
  margin-right: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin: 10px 0 5px;
  font-weight: bold;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  background: #e6e6e6;
  border-radius: 4px;
}

textarea {
  padding: 10px;
  border: 1px solid #ccc;
  background: #e6e6e6;
  border-radius: 4px;
}

/* Botões */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  border: 2px solid #004d25;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.btn:hover {
  background: #004d25;
  color: #fff;
}

.voltar {
  margin-left: 20px;
}

.imagem img {
  max-width: 350px;
  border-radius: 8px;
}
