* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  height: 100%;
}

.dash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 115%;
  background: url('../public/img/background.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1; /* Garantir que fique por trás do conteúdo */
}

.container {
  display: flex;
  height: 100vh;
}

select.registro-permissao {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  margin-top: 10px;
}


.registro-header{
  margin-bottom: 100px;
  text-align: center;
}

.login-panel {
  width: 40%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 200px;
  margin-bottom: 15px;
}

h2 {
  font-size: 14px;
  color: #333;
  margin: 1%;
}

.logo-top-left {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 8%; /* ajuste o tamanho conforme necessário */
  z-index: 100;
}


.entrar{
  width: 100%;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 25px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url('../public/img/eye-icon.svg') no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  z-index: 99;
}

.toggle-password.show {
  background: url('../public/img/eye-off-icon.svg') no-repeat center center;
  background-size: contain;
}

.toggle-password:hover {
  opacity: 1;
}

button {
  margin-top: 20px;
  padding: 12px;
  background-color: #17393A;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0e2627;
}
