/* Fundo da página */
body.login-body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #121212; /* Apenas fundo sólido escuro */
  background-image: none;     /* Remove textura */
  font-family: 'Segoe UI', sans-serif;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Container principal */
.login-container {
  background-color: #1c1c1c;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
  width: 100%;
  max-width: 380px;
  text-align: center;
}

/* Logo + título */
.logo-container {
  margin-bottom: 30px;
}

.logo-container i {
  font-size: 50px;
  color: #e63946;
}

.logo-container h1 {
  font-size: 26px;
  margin: 10px 0 0;
  line-height: 1.3;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.logo-container h1 span {
  color: #e63946;
}

/* Formulário */
.login-form .input-group {
  display: flex;
  align-items: center;
  background-color: #2a2a2a;
  border: 1px solid #3b3b3b;
  border-radius: 6px;
  margin-bottom: 15px;
  padding: 10px 12px;
}

.login-form .input-group i {
  margin-right: 10px;
  color: #888;
}

.login-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
  font-size: 14px;
}

/* Botão de login */
.btn-login {
  width: 100%;
  background-color: #e63946;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 5px;
  transition: background 0.3s ease;
}

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

/* Link de esqueci senha */
.link {
  font-size: 14px;
  color: #aaa;
  margin-top: 20px;
  cursor: pointer;
  text-decoration: underline;
}

/* Erro */
.mensagemErro {
  color: #ff4d4d;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}
