main > .container {
    display: flex;
    min-height: 100vh;
    transition: all 0.3s ease;
}

.btn-custom {
    background-color: #003587;
    color: white;
    border: none;
}

.btn-custom:hover {
    background-color: #1a3c6b; 
    color: white;
}


/* CADASTRAR NOVO USUÁRIO */
.blue-background {
    background-color: #003587;
}

.custom-link {
    font-weight: bold;             /* Negrito */
    text-decoration: none;         /* Sem sublinhado */
    font-family: 'Poppins', sans-serif; /* Fonte estilizada */
    font-size: 1rem;             /* Tamanho da fonte */
    color: #ffffff;                /* Azul Bootstrap (ou o que quiser) */
}

.custom-link:hover {
    text-decoration: underline;    /* Se quiser efeito hover opcional */
}

/********************************/