body {
  background-color: #0070f3; /* azul de fundo */
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  width: 320px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.container img {
  width: 160px;
  margin-bottom: 20px;
}

.container h2 {
  color: teal;
  margin-bottom: 10px;
}

.container p {
  color: #444;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  text-align: left;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="date"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

input[type="checkbox"] {
  margin-right: 8px;
}

button {
  background-color: #0070f3;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #005dc1;
}

.termos {
  font-size: 14px;
  color: #333;
}

.termos a {
  color: #0070f3;
  text-decoration: none;
}
/* POPUP TERMOS */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.popup-content h3 {
  margin-top: 0;
  color: #0070f3;
}

.popup-content h4 {
  margin-bottom: 5px;
  margin-top: 15px;
  color: #0070f3;
}

.popup-content p {
  font-size: 14px;
  color: #333;
}

.fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.fechar:hover {
  color: #000;
}