/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

/* FUNDO */
body {
  background: #fffdf5;
  min-height: 100vh;
}

/* HEADER */
header {
  background: #f5e6a8; /* amarelo manteiga */
  padding: 22px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

header h1 {
  font-size: 26px;
  color: #5c4a00;
  letter-spacing: 1px;
}

/* FORMULÁRIO */
form {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

/* CONTAINER */
.tudo {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid #f3e7b5;
}

/* LABELS */
.tudo label {
  font-size: 14px;
  font-weight: 600;
  color: #6a5a00;
}

/* INPUTS */
.tudo input[type="text"],
.tudo input[type="nome"],
.tudo input[type="gmail"],
.tudo input[type="date"],
.tudo select {
  width: 100%;
  padding: 11px 14px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #e6d98f;
  font-size: 14px;
  background: #fffef8;
  outline: none;
  transition: all 0.3s ease;
}

/* FOCO */
.tudo input:focus,
.tudo select:focus {
  border-color: #f0d85c;
  box-shadow: 0 0 0 2px rgba(240, 216, 92, 0.3);
}

/* CAMPO MENSAGEM */
#mensage {
  width: 100%;
}

/* BOTÃO */
.tudo input[type="submit"] {
  margin-top: 22px;
  width: 100%;
  padding: 14px;
  background: #f0d85c;
  color: #5c4a00;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tudo input[type="submit"]:hover {
  background: #e6cc4f;
  transform: translateY(-1px);
}

/* RESPONSIVO */
@media (max-width: 500px) {
  .tudo {
    padding: 28px;
    margin: 0 15px;
  }

  header h1 {
    font-size: 22px;
  }
}
