body {
    background-color: #121212;
    color: #333;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgb(48, 48, 48);
}

.logo-side {
  width: 170px;
}

.logo-center {
  width: 180px;
}

/* Quando a tela for menor que 768px, esconde as logos laterais */
@media (max-width: 768px) {
  .logo-side {
    display: none;
  }

  .logo-container {
    justify-content: center;
  }
}

@media (max-width: 547px) {

    .logo-center {
    width: 80%;
  }

}

.logo-container img {
    max-height: 80px;
    height: auto;
}

.sorteio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    flex-direction: column;
    /* compensar o espaço da logo */
    gap: 20px;
}

.form-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.form-card h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.form-label {
    display: flex;
    gap: 2px;
    font-weight: bold;
}

.form-label .text-danger{
    font-weight: bold;
}

footer {
    border-top: white 2px solid;
    padding-top: 10px;
    color: white;
}

.pergunta {
  color: white;
}