.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

body {
    background-color: #f8f9fa;
    /* Cor de fundo suave */
}

.container {
    margin-top: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
   /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
   
}

.text-information {
    font-size: 10pt;
}

.required-field {
    color: red;
}

.form-control, .form-select {
    border-radius: 0 !important;
    border: none;
    border-bottom: 2px solid #ced4da;
    box-shadow: none;
    transition: border-color 0.3s;
}

.form-control:focus ,:focus{
    border-bottom: 3px solid #dc3545;
    outline: none;
    box-shadow: none;
    border-radius: 0;
}

.input-group-addon {
    background: transparent;
    border: none;
    padding: 0;
}

.mb {
    margin-bottom: 1rem;
}

.select-wide {
    min-width: 110px;
}

@media(max-width:700px) {
    .my-btn {
        display: block;
        width: 100% !important;
    }
}