/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   background: linear-gradient(0deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .4) 100%), linear-gradient(250deg, #E6A444 -3.84%, #363B68 106.1%), url(../images/fundo.jpg), lightgray 0px -957.905px / 60% 307.692% no-repeat;
    background-blend-mode: normal, multiply, normal;
    background-size: 100%;
    background-position-x: -90%;
    background-position-y: -80%;
    height: 90vh;
    font-family: Montserrat, serif;
    padding-top: 20px;
}

.logo {
    width: 40%;
    height: auto;
}
.logo-solo {
    width: 20%;
    height: auto;
}

.user-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.user-menu span {
    color: #ffffff;
    margin-right: 10px;
}

.dropdown-toggle {
    background-color: transparent !important;
    border: none;
    color: #ffffff !important;
}

.dropdown-toggle::after {
    color: #ffffff;
}

.dropdown-menu {
    background-color: transparent;
    border: none;
}

.dropdown-item {
    color: #fff !important;
    background-color: #444;
}

.dropdown-item:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .user-menu {
        justify-content: center;
        margin-top: 20px;
    }
}

form {
    flex-grow: 0;
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
}

form h1 {
    font-family: Montserrat, serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.38px;
    text-align: left;
}

form p {
    font-family: Montserrat, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17.07px;
    text-align: left;

}

form .hidden {
    display: none;
}

.form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
}

form input {
    border-radius: 5px;
    background-color: #f9f9f9;
    border: 1px solid #A0A0A0;
    font-family: Montserrat, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin: 1rem 1rem;
}

.btnConsultar {
    width: 80%;
    color: #fff;
    background-color: #E6A444;
    border: 1px solid #E6A444;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
    font-family: Montserrat, serif;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    margin: 10px 0px;
}

span {
    font-family: Montserrat, serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.span_red {
    color: rgb(247, 77, 77);
}

.menu_header {
    background:none;
    color: #fff;
    border:none;
    padding:0;
    cursor:pointer;
    outline:none;
}

button {
    background-color: #E6A444;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
}

.card-body {
    border-radius: 10px;
}


