/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Fundo da página */
body {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container principal */
.container {
  width: 100%;
  max-width: 800px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Títulos */
h2 {
  margin-bottom: 15px;
  color: #333;
  border-left: 5px solid #4facfe;
  padding-left: 10px;
}

/* Espaçamento geral */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Linha com 2 campos */
.linha {
  display: flex;
  gap: 15px;
}

/* Campo único */
.cadastro {
  display: flex;
  flex-direction: column;
}

/* Campos lado a lado */
.cadastros {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Labels */
label {
  margin-bottom: 5px;
  color: #555;
  font-size: 14px;
}

/* Inputs e select */
input,
select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: 0.3s;
}

/* Foco */
input:focus,
select:focus {
  border-color: #4facfe;
  box-shadow: 0 0 5px rgba(79, 172, 254, 0.5);
}

/* Botão */
button {
  margin-top: 10px;
  padding: 12px;
  background: #4facfe;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover botão */
button:hover {
  background: #00c6ff;
}

/* Responsivo */
@media (max-width: 600px) {
  .linha {
    flex-direction: column;
  }
}