/* Importação da fonte Poppins do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Cores da paleta com base na imagem */
:root {
    --bg-color: #0a0a0a;
    --card-bg-color: #000;
    --text-color: #f0f0f0;
    --primary-color: #6a1b9a;
    /* Roxo escuro */
    --accent-color: #d1c4e9;
    /* Roxo claro */
    --neon-color: #00ff00;
    /* Verde neon */
}

/* Reset básico e estilos gerais */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    /* Fundo escuro */
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Container principal para centralizar o conteúdo */
.login-container {
    width: 100%;
    max-width: 500px;
    /* Largura máxima para desktops */
    padding: 2rem;
    box-sizing: border-box;
}

/* Caixa de login */
.login-box {
    background: var(--card-bg-color);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--primary-color);
}

h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Grupo de input (label + input) */
.input-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 400;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    background-color: #444;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-color);
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--neon-color);
    box-shadow: 0 0 5px var(--neon-color);
}

#flexCheckDefault {
    width: 20px !important;
    height: 20px !important;
    float: left;
    margin-right: 10px;

}
.modal-title{
    color: #000;
}
.modal-body{
    color: #494949 !important;
}
.modal-body h1, .modal-body h2, .modal-body h3, .modal-body h4, .modal-body h5, .modal-body h6{
    color: #000 !important;
}
/* Botão de login */
.login-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: var(--neon-color);
    color: var(--bg-color);
}





.coverModule {
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 300px;
    border-radius: 5px;
    opacity: 0.5;
}

/* Links de "esqueceu a senha" e "cadastro" */
.links {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.links a:hover {
    color: var(--neon-color);
    text-decoration: underline;
}


/* Container dos inputs de OTP */
.otp-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    /* Espaço entre os inputs */
}

/* Estilo para cada input individual de OTP */
.otp-input {
    width: 45px;
    height: 60px;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid var(--primary-color);
    background-color: var(--card-bg-color);
    color: var(--text-color);
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Foco e digitação nos inputs de OTP */
.otp-input:focus {
    outline: none;
    border-color: var(--neon-color);
    box-shadow: 0 0 8px var(--neon-color);
}


.swiper-button-next,
.swiper-button-prev {

    color: #00ff00 !important;
}

.swiper-pagination-bullet-active {
    background: #00ff00 !important;
}

/* Media Queries para responsividade */
@media (max-width: 480px) {
    .login-container {
        padding: 1rem;
    }

    .login-box {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}