body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}

.top-bar {
  background-color: #172647;
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar h1 {
  margin: 0 auto;
  font-size: 20px;
}

.back-button {
  text-decoration: none;
  color: white;
  font-size: 24px;
  position: absolute;
  left: 20px;
}

.descricao {
  margin: 30px 20px 10px;
  font-size: 14px;
}

.formulario {
  background-color: #f3f3f3;
  padding: 20px;
  margin: 20px auto;
  width: 90%;
  max-width: 320px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.campo input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  background-color: #eaeaea;
  font-size: 14px;
  box-sizing: border-box;
}

.termos {
  display: flex;
  align-items: flex-start;
  text-align: left;
  font-size: 12px;
  gap: 10px;
}

.termos input {
  margin-top: 4px;
}

.termos a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}

.botao {
  background-color: #0649a7;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.botao:hover {
  background-color: #053a85;
}

.temConta {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
  text-decoration: none;
}
