body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    color: #fff;
    font-family: Roboto, sans-serif;
}

.background {
    background-color: #4c04ec;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.container {
    max-width: 600px;
    text-align: center;
}
.w-90 {
    width: 90%;
}
.w-70 {
    width: 70%;
}
.logo {
    max-width: 100%;
    margin-bottom: 1rem;
}
.logo2 {
    max-width: 50%;
}

.btn-custom {
    background-color: #ffffff;
    color: #2E0686;
    font-weight: bold;
    border-radius: 3px;
}
.btn-custom:hover {
    background-color: #f2b9ff;
    color: #2E0686;
}

.btn-custom-2 {
    background-color: #F3B8FF;
    color: #2E0686;
    font-weight:bold;
    border-radius: 3px;
}
.btn-custom-2:hover {
    background-color: #ffffff;
    color: #2E0686;
}

input,textarea {
    background: #fff;
    border-radius: 0 !important;
}
::placeholder{
    color: #2E0686 !important;
}
.neon-lines {
    position: absolute;
    width: 30%;
    height: 50%;
    background: radial-gradient(circle, transparent 20%, #6a04db 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(15px);
    animation: rotate 6s linear infinite;
    z-index: -1;
}
        

.wish-box {
    background-color: #fff;
    color: #1d034f;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-size: 1rem;
    min-height: 130px;
    word-break: break-word;
    overflow-wrap: break-word;    
}

/* Deixa o fundo do modal transparente */
.transparent-modal {
    background-color: transparent;  /* Fundo transparente */
    border: none; /* Remove a borda do conteúdo */
    box-shadow: none; /* Remove a sombra */
}

/* Remover o fundo do overlay do modal */
#loadingModal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escurecido opcional */
}

/* Estilo do spinner */
#loadingModal .modal-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;  /* Texto branco */
}

/* Estilo para garantir que o modal ocupe toda a tela */
#loadingModal .modal-dialog {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
}

#loadingModal .modal-content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.no-resize {
    resize: none;
  }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}