body {
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-container {
  width: 100%;
  max-width: 440px;
}

.login-form {
  background-color: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  border: 3px solid #f59e0b; /* Borda Dourada / Amarela */
  border-radius: 16px;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.7), 0 0 15px rgba(245, 158, 11, 0.25);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}

.login__logo {
  width: 220px; /* Logo do Harry Potter bem maior */
  max-width: 90%;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6)) brightness(1.1);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.login__header h1 {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.4;
  text-shadow: 2px 2px 0px #d97706; /* Sombra do texto em dourado escuro */
}

.login__input {
  background-color: #fff;
  border: 3px solid #333;
  border-radius: 8px;
  color: #1e293b;
  font-size: 0.8rem;
  margin-bottom: 20px;
  padding: 16px;
  width: 100%;
  text-align: center;
  outline: none;
  transition: all 0.2s ease;
}

.login__input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}

.login__button {
  background-color: #f59e0b; /* Botão Dourado/Amarelo */
  border-radius: 8px;
  color: #0f172a; /* Texto escuro no botão para alto contraste */
  font-weight: bold;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 16px;
  width: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 4px 0px #b45309;
}

.login__button:hover:not(:disabled) {
  background-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 6px 0px #b45309;
}

.login__button:active:not(:disabled) {
  transform: translateY(2px);
  box-shadow: 0 2px 0px #b45309;
}

.login__button:disabled {
  background-color: #334155;
  color: #64748b;
  cursor: not-allowed;
  box-shadow: none;
}