* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: "Inter", serif;
    box-sizing: border-box;
    color: #fff;
}

body {
    background-color: #06040c;
}

.custom-bg {
    background-color: #06040c;
}

.custom-button {
    background-color: #824bf6;
}

.custom-button:hover {
    background-color: #6f3ce6;
}

.form-input {
    background-color: #1a1823;
    border: 1px solid #333;
}

.form-input:focus {
    border-color: #824bf6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(130, 75, 246, 0.5);
}

.login-container {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

#app,
.area-login {
    min-height: 100vh;
}

/* Estilo do loader */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #824bf6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Animação do loader */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-opacity-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.text-gray-800 {
    color: #2d3748;
    /* Cinza escuro para boa visibilidade */
}

.text-purple-500 {
    color: #6b46c1;
    /* Roxo para o loading */
}

.choices {
    background-color: #2b2a34 !important;
    border-radius: 8px;
    border: 1px solid #824bf6 !important;
}

.choices__inner {
    background-color: #2b2a34 !important;
    color: white !important;
    padding: 10px;
    border-radius: 8px;
    max-width: 400px;
    border: none;
}

.choices__list--dropdown {
    background-color: #2b2a34 !important;
    border: 1px solid #824bf6 !important;
}

.choices__list--dropdown .choices__item {
    color: white !important;
    padding: 8px;
}

.choices__list--dropdown .choices__item:hover {
    background-color: #824bf6 !important;
    cursor: pointer;
}

.choices__item--selectable {
    background-color: #824bf6 !important;
    color: white !important;
    border-radius: 4px;
    padding: 5px;
    margin: 4px;
}

.choices__input {
    background-color: #2b2a34 !important;
    color: white !important;
}
