* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  width: 100vw;
  background: url("/images/fundo/fundo-login.png") no-repeat center center / cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay escuro */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Container do login */
.login-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Cartão com efeito glass */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s ease;
}

/* Duas logos lado a lado */
.intro-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.intro-logos img {
  max-height: 80px;
  object-fit: contain;
  animation: pulse 2s infinite ease-in-out;
}

/* Título */
.glass h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

/* Campos de input */
.glass input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 15px;
}

/* Botão de login glass */
.glass button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15); /* glass neutro */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
  margin-top: 10px;
}

/* Hover branco */
.glass button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* Botão cinema com efeito glass */
.btn-cinema {
  padding: 12px 24px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15); /* glass */
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* Hover branco */
.btn-cinema:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* Animações */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 480px) {
  .glass {
    padding: 20px;
  }

  .intro-logos img {
    max-height: 60px;
  }

  .glass h2 {
    font-size: 1.3rem;
  }

  .glass button {
    font-size: 14px;
    padding: 12px;
  }
}
.forgot-link {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: #fff;
  text-decoration: underline;
}
