/* ===============================
   RESET / BASE
================================ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.85)
    ),
    url('/icones/gameplay.webp') center/cover no-repeat;

  font-family: Arial, sans-serif;

  justify-content: center;
  align-items: center;
}

/* ===============================
   AUTH WRAPPER (SEM CARD)
================================ */
.auth-container {
  width: 320px;
  text-align: center;
  animation: fadeUp 0.8s ease-out;
}

/* ===============================
   TÍTULO
================================ */
h2 {
  margin-bottom: 25px;
  color: #f0d26a;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  text-shadow:
    0 0 8px rgba(240, 210, 106, 0.6),
    0 0 20px rgba(240, 210, 106, 0.3);
}

/* ===============================
   INPUTS
================================ */
input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;

  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(240, 210, 106, 0.4);
  border-radius: 6px;

  color: #fff;
  font-size: 15px;

  box-shadow:
    0 0 10px rgba(0, 0, 0, 0.8);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input:focus {
  outline: none;
  border-color: #f0d26a;
  box-shadow:
    0 0 15px rgba(240, 210, 106, 0.8);
}

/* ===============================
   BOTÃO
================================ */
button {
  width: 100%;
  padding: 14px;
  margin-top: 15px;

  background: #f0d26a;
  border: none;
  border-radius: 6px;

  color: #1b1b1b;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;

  box-shadow:
    0 0 15px rgba(240, 210, 106, 0.6);
}

button:hover {
  background: #ffe28c;
  box-shadow:
    0 0 25px rgba(240, 210, 106, 0.9);
}

button:disabled {
  background: #555;
  cursor: not-allowed;
  box-shadow: none;
}

/* ===============================
   MENSAGENS
================================ */
.msg {
  margin-top: 15px;
  font-size: 14px;
  color: #fff;

  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.9);
}

/* ===============================
   LINKS
================================ */
.link {
  margin-top: 20px;
   color: #555;
  text-decoration: none;
  font-weight: bold;
}

.link a {
  color: #f0d26a;
  text-decoration: none;
  font-weight: bold;
}

.link a:hover {
  text-shadow:
    0 0 10px rgba(240, 210, 106, 0.9);
}

/* ===============================
   ANIMAÇÕES
================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 420px) {
  .auth-container {
    width: 90%;
  }

  h2 {
    font-size: 1.6rem;
  }
}

/* ===============================
   LAYOUT LADO A LADO ESQUERDO
================================ */
/* ===============================
   LAYOUT 3 COLUNAS
================================ */
.layout {
	  margin: 0;
  padding: 0;
  min-height: 100vh;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.85)
    ),
    url('/icones/gameplay.webp') center/cover no-repeat;

  font-family: Arial, sans-serif;
  justify-content: center;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 170px;
  z-index: 1;
}

/* ===============================
   LADOS (ESQ / DIR)
================================ */
.layout-esquerdo,
.layout-direito {
  max-width: 280px;
  gap: 170px;
  animation: fadeUp 0.8s ease-out;
}

/* ===============================
   INFO (REUTILIZÁVEL)
================================ */
.pagamento-info h1 {
  font-size: 1.2rem;
  color: #f0d26a;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;

  text-shadow:
    0 0 12px rgba(240, 210, 106, 0.7),
    0 0 25px rgba(240, 210, 106, 0.4);
}

.pagamento-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #eee;

  text-shadow:
    0 0 10px rgba(0, 0, 0, 0.9);
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 1100px) {
  .layout {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}

#descricao-dinamica {
  transition: opacity 0.3s ease-in-out;
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 420px) {
  .auth-container {
    width: 90%;
  }

  h2 {
    font-size: 1.6rem;
  }
}
