/* Estilos gerais */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f6f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Container principal */
.login-container {
  background-color: #fff;
  width: 380px;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Logo */
.logo {
  width: 60px;
  margin-bottom: 15px;
}

/* Título */
h1 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #1d2d50;
}

/* Grupo de inputs */
.input-group {
  margin-bottom: 20px;
  text-align: left;
  position: relative;
}

/* Label */
label {
  display: block;
  color: #1d2d50;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Inputs e Select */
input,
select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #5a8dee; /* azul claro */
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
  background-color: #fff;
  box-sizing: border-box;
}

/* Foco */
input:focus,
select:focus {
  border-color: #1d2d50;
  box-shadow: 0 0 6px rgba(29, 45, 80, 0.3);
}

/* Select customizado */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f7f9ff;
  color: #1d2d50;
  background-image: linear-gradient(45deg, transparent 50%, #1d4ed8 50%),
    linear-gradient(135deg, #1d4ed8 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Fundo azul quando aberto (lista de opções) */
select option {
  background-color: #f7f9ff;
  color: #1d2d50;
}

/* Opção selecionada */
select option:checked {
  background-color: #1d4ed8;
  color: #fff;
}

/* Opção ao passar o mouse */
select option:hover {
  background-color: #5a8dee;
  color: white;
}

/* Botão principal */
.btn-login {
  width: 100%;
  background-color: #1d4ed8;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-login:hover {
  background-color: #153eab;
}

/* Botão secundário */

button.btn-secondary,
a.btn-secondary {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #1d4ed8;
  border: 1px solid #1d4ed8;
  text-align: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  font-size: 16px;
  box-sizing: border-box;
}

button.btn-secondary:hover,
a.btn-secondary:hover {
  background-color: #e8edff;
}

/* Links */

.link {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #1d4ed8;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* Rodapé */

footer {
  margin-top: 25px;
  font-size: 12px;
  color: #777;
}
