    body {
        font-family: Arial, Helvetica, sans-serif;
        background-color: #f8f9fa;
    }

    .container {
        max-width: 1000px;
        /* Defina o valor desejado para reduzir a largura */
        margin-top: 50px;
    }

    .card {
        border: none;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .card-header {
        background-color: #EAEAEA;
        color: #004080;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .card-title {
        color: #004080;
        text-align: center;
    }

    label {
        font-weight: bold;
    }

    .form-check-label {
        font-weight: normal;
    }

    .btn-primary {
        background-color: #004080;
        border: none;
    }

    .btn-primary:hover {
        background-color: #003366;
    }

    .container {
        margin-top: 50px;
    }

    p {
        text-align: start;
    }

    .alert-important {
        background-color: #ffeeba;
        border-color: #ffdf7e;
        color: #856404;
    }

    hr.custom-line {
        border: 1px solid #D6D8D9;
        margin: 20px 0;
    }

    .btn-custom {
        font-size: 1.2rem;
        padding: 10px 20px;
        /* Ajuste o padding conforme necessário */
    }
    .highlight-container {
        background-color: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
        margin-top: 200px;
        max-width: 600px;
        width: 100%;
        height: auto;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    @media (max-width: 767.98px) {
        .highlight-container {
            padding: 15px;
            margin-top: 30px;
        }
        h1 {
            font-size: 1.5rem;
        }
        h2 {
            font-size: 1.25rem;
        }
        .fa-check {
            font-size: 3rem;
        }
    }

    /* Optional: Styling to improve appearance of file input field */
.input-group .form-control {
    position: relative;
    z-index: 2;
}

.input-group .form-control:after {
    content: attr(data-filename);
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 40px); /* Adjust based on the button width */
}
