
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: url('../assets/imglogin/vlad_rosa_negra.jpg') no-repeat center center fixed;
  background-size: cover; /* Faz preencher toda a tela */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.login-container {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 15px #900000;
}

.blood-text {
  font-family: 'Creepster', cursive;
  color: #ff0000;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

.sub-text {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #ccc;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
  background: #222;
  color: #fff;
}

input:focus {
  outline: none;
  border: 1px solid #ff0000;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #ff0000, #990000);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-login:hover {
  background: linear-gradient(90deg, #ff1a1a, #cc0000);
}

.info {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #999;
}


#sangue {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* não atrapalha cliques */
  z-index: 1; /* fica no fundo */
}
