html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #0f0d1f;
    color: #ffffff;
}

/* =========================
   CORES UTILITÁRIAS
========================= */

.red {
    color: #ff4d4d !important;
}

.green {
    color: #00c853 !important;
}

.BV {
    color: #3A77FF;
}

/* =========================
   BOTÕES
========================= */

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(58, 119, 255, 0.35);
}

/* botão principal do portal */
.buttonInicio {
    background-color: #211C3E;
    color: #3A77FF;
    border: 1px solid #3A77FF;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

    .buttonInicio:hover {
        background-color: #3A77FF;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(58, 119, 255, 0.25);
    }

    .buttonInicio:active {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(58, 119, 255, 0.15);
    }

    .buttonInicio:disabled {
        background-color: #2a2745;
        border-color: #444;
        color: #888;
        cursor: not-allowed;
    }

/* =========================
   LAYOUT / COMPONENTES
========================= */

.menu {
    background-color: #211C3E !important;
    border-bottom: 1px solid rgba(58, 119, 255, 0.2);
}

.modal-title {
    color: #211C3E;
}

.center {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================
   INPUTS (melhoria futura já pronta)
========================= */

.form-control {
    background-color: #1a1733;
    border: 1px solid #3A77FF;
    color: #ffffff;
    border-radius: 8px;
}

    .form-control:focus {
        background-color: #1a1733;
        color: #ffffff;
        border-color: #3A77FF;
    }

.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at top, #211C3E, #0f0d1f);
}

#mensagemModal {
    color: #211C3E;
    font-size: 16px;
    font-weight: 500;
}


.card-modulo {
    transition: 0.2s ease-in-out;
    cursor: pointer;
    border: none;
    border-radius: 12px;
}

.card-modulo:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }



.portal-title {
    font-weight: 700;
    margin-bottom: 30px;
}

.card-body {
    padding: 30px 15px;
}

.module-link {
    text-decoration: none;
}

.logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.login-logoInicio {
    width: 320px;
    height: 320px;
    object-fit: contain;
    margin-bottom: -20px;
}


.menuUser {
    padding-right: 50px;
}