
body {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  background: url("URL-DA-TUA-IMAGEM-AQUI") no-repeat center center fixed;
  background-size: cover;
}

/* fundo com tema vermelho/preto */
.login-bg {
  height: 100vh;
  width: 100%;
  background: linear-gradient(145deg, #0a0000, #200000);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* caixa de login */
.login-box {
  width: 380px;
  padding: 45px 35px; /* um pouco mais espaçoso */
  background: rgba(20, 0, 0, 0.75);
  border-radius: 18px;
  border: 1px solid #400000;
  box-shadow: 0 0 25px #200000;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.6s ease forwards;
}

/* animação suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-title {
  text-align: center;
  font-size: 2.7rem; /* maior */
  font-family: 'Cinzel', serif;
  color: #ff2a2a;
  margin-bottom: 8px;
  text-shadow: 0 0 12px #b30000;
}

.login-sub {
  color: #ffbdbd;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.25rem; /* maiorzinho */
  font-family: 'Orbitron', sans-serif;
}

/* grupos de inputs */
.input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
    padding: 10px; /* maior */
      font-size: 1.05rem; /* maior */
}

.input-group label {
  color: #ff8a8a;
  margin-bottom: 5px;
}

.input-group input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #300000;
  background: #0d0000;
  color: #ffdddd;
  box-shadow: inset 0 0 10px #1a0000;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #ff2a2a;
  box-shadow: 0 0 12px #ff0000;
}

/* botão estiloso */
.login-btn {
  width: 100%;
  padding: 14px; /* maior */
  border-radius: 12px;
  border: 1px solid #b30000;
  background: linear-gradient(145deg, #400000, #1a0000);
  color: #ffdddd;
  font-size: 1.2rem; /* maior */
  cursor: pointer;
  margin-top: 12px;
  transition: 0.25s;
  box-shadow: 0 0 14px #200000;
}

.login-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #ff0000;
}

/* links extras */
.extras {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.extras a {
  color: #ff7777;
  font-size: 1rem; /* maior */
  transition: 0.3s;
}

.extras a:hover {
  color: #ff2a2a;
  text-shadow: 0 0 6px #b30000;
}