/* Fundo amarelo vibrante */
body {
  background: linear-gradient(135deg, #00aeef, #ec008c);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  padding-bottom: 4rem;
}

.bg-photo {
  background-color: #fff;
}

/* Caixa estilo polaroid com sombra moderna */
.polaroid-container {
  background-color: white;
  padding: 10px;
  border: 12px solid white;
  border-bottom-width: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  max-width: 800px;
  width: 100%;
  margin: 2rem auto;
  animation: float 3s ease-in-out infinite;
  height: auto;
}

.code {
  font-size: 3.2rem !important;
}

.polaroid-container img {
  display: block;
  max-width: 60%;
  height: auto;
}

/* Token em destaque */
.text-large {
  font-size: 4rem;
  font-weight: bold;
  color: #ec008c;
  text-shadow: 2px 2px #fff;
  margin-bottom: 1rem;
  letter-spacing: 10px;
}

@media only screen and (max-width: 600px) {
  .text-large {
    font-size: 2rem;
    letter-spacing: 5px;
  }
}

/* Espaçamento */
.text-space {
  margin-top: 0rem;
}

/* Tipografia e título */
.revelaki-font {
  font-weight: 500;
  font-size: 1.2rem;
}

h1, .fs-3 {
  color: #00aeef;
  font-weight: 600;
  text-align: center;
}

/* Botões vibrantes */
.btn-primary {
  background-color: #00aeef !important;
  border: none;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #ec008c !important;
  color: #fff;
}

.btn-secondary {
  background-color: #999 !important;
  color: white;
  font-weight: bold;
}

.btn-secondary:hover {
  background-color: #555 !important;
}

/* Formulário centralizado */
main.form-signin {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-top: 2rem;
}

/* FilePond ocupa toda a largura do contêiner pai */
.filepond--root { width: 100%; }

/* Permite que os itens (thumbnails) quebrem para a linha de baixo */
.filepond--list { 
  display: flex;
  flex-wrap: wrap;
  gap: 8px;             /* espaço entre miniaturas */
}

.filepond--action-process-item {
  display: none !important;
}

.filepond--drop-label {
  background-color: #ffe600 !important;
}