/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #e6efff;
  height: 100vh;
}

/* Container principal */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

/* Topo azul */
.topo {
  width: 100%;
  height: 250px;
  background-color: #0e65d6;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Caixa do login */
.box-login {
  background-color: #e6efff;
  margin-top: -180px;
  width: 100%;
  max-width: 900px;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo e slogan */
.logo img {
  width: 100px;
  display: block;
  margin: 0 auto 10px;
  border-radius: 50%;
}

.slogan {
  font-size: 14px;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

/* Título e subtítulo */
.titulo {
  color: #1a1a1a;
  font-size: 22px;
  margin-bottom: 5px;
}

.subtitulo {
  font-size: 13px;
  color: #333;
  margin-bottom: 30px;
}

/* Inputs */
.input-group {
    width: 100%;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 13px;
  color: #0e65d6;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
}
#usuario{
    width: 320px;
}

/* Senha com olho */
.senha-wrapper {
  position: relative;
}

.toggle-visibility {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #0e65d6;
}

/* Checkbox */
.opcoes {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  font-size: 13px;
  color: #333;
}

.opcoes input {
  margin-right: 6px;
}

/* Botão */
.btn-acessar {
  width: 100%;
  background-color: #0e65d6;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-acessar:hover {
  background-color: #0950b0;
}

/* Links */
.links {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.links a {
  color: #0e65d6;
  font-size: 13px;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}
