body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('img/cadastro-background.png') no-repeat center center fixed;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}


.cadastro-container {
  background-color: #f8f8f8;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
}

h2 {
  text-align: center;
  color: #1e3c72;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 4px;
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="password"] {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  background-color: #fff;
}

.btn {
  padding: 10px;
  background-color: #1abc9c;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #159c88;
}

.erro {
  color: red;
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.login-link {
  margin-top: 20px;
  text-align: center;
}

.login-link a {
  color: #1e3c72;
  text-decoration: none;
  font-weight: bold;
}

.login-link a:hover {
  text-decoration: underline;
}
/* Estilo genérico para todos os selects do form */
select {
  appearance: none;           /* remove setinha default em alguns navegadores */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M0%200l5%206%205%200z'%20fill%3D'%23999'%20/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  margin-bottom: 15px;
  cursor: pointer;
}

/* Forçar o mesmo padding nos selects .form-control */
form .form-control, form select.form-control {
  display: block;
  box-sizing: border-box;
}

/* Foco no select */
select:focus {
  outline: none;
  border-color: #1abc9c;
  box-shadow: 0 0 0 2px rgba(26, 188, 156, 0.2);
}

/* Se quiser um ícone personalizado mais escuro no hover */
select:hover {
  border-color: #999;
}
.login-logo {
  display: block;
  margin: 0 auto -15px auto;
  max-width: 130px; /* ← aumente aqui (antes era 120px) */
  height: auto;
}
