:root {
    --mdc-theme-primary: #076186;
}

a {
    color: #076186;
    text-decoration: none;
    cursor: pointer;
    -webkit-font-smoothing: none;
}

a:hover {
    filter: brightness(1.5);
}

html {
    min-height: 100%;
    position: relative;
}

body {
    margin: 0;
    font-family: 'Roboto',sans-serif;
    font-size: medium;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    height: 100%;
    padding-bottom: 20px;
    background-position: center 90px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../assets/background.jpg');
}

#header {
    height: 70px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #e3e3e3;
    background-color: white;
}

#header .logo {
    height: 60px;
}

#header .logo-group {
    height: 40px;
}

#header h2 {
    color: black;
    text-align: center;
}

#site-footer {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    left: 0px;
    right: 0px;
    text-align: center;
    color: rgba(0, 0, 0, 0.623);
    font-family: 'Poppins';
    font-size: 12px;
}

#assinatura-input-wrapper {
    display: flex;
    flex-direction: row;
}

#wrapper-consulta {
    background-image: url('../assets/background-condominial.png');
    background-repeat: no-repeat;
    color: white;
    min-height: 150px;
    padding: 20px;
    margin: 20px;
    border: solid 1px #e3e3e3;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

#wrapper-consulta .row {
    display: flex;
    flex-direction: column;
}

#wrapper-consulta h4 {
    margin-bottom: 0px;
}

#wrapper-consulta .mdc-text-field {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#wrapper-consulta .mdc-text-field .mdc-notched-outline__leading, #wrapper-consulta .mdc-text-field .mdc-notched-outline__trailing {
    border-color: white !important;
    transition: border ease-out 0.5s;
    background-color: rgba(255, 255, 255, 0.4);
}

#wrapper-consulta .mdc-text-field input {
    color: rgb(255, 255, 255) !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 6px;
    caret-color: white;
    font-family: monospace;
    z-index: 2;
    position: relative;
}

#assinatura-input-wrapper textarea.input-target {
    display: none;
}

.mdc-text-field .back-placeholder {
    position: absolute;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: rgba(39, 85, 134, 0.718);
    top: 17px;
    user-select: none;
    font-family: monospace;
    z-index: 1;
    font-size: 1rem;
    width: 607px;
}

#wrapper-consulta .mobile-banner-container {
    display: none;
}

#wrapper-consulta .row.first-row {
    flex-direction: column;
    flex: 1;
    margin-top: auto;
    margin-bottom: auto;
}

#wrapper-consulta .btn-consultar {
    border-color: white !important;
    background-color: white;
    width: 200px;
    margin-left: 10px;
    height: 56px;
}

#wrapper-consulta .btn-consultar .loader {
    display: none;
    color: #076186;
    height: 24px;
    width: 24px;
    margin-right: 4px;
    vertical-align: bottom;
}

.ajuda-imagens {
    display: flex;
    justify-content: space-around;
}

.ajuda-imagens img {
    height: 140px;
}

#wrapper-documento {
    position: relative;
    display: none;
    padding: 20px;
    margin: 20px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 3px 4px 4px 0px #00000042;
    background-color: white;
}

#wrapper-documento h3 {
    color: #444444;
    margin-top: 6px;
    margin-bottom: 6px;
}

.material-symbols-outlined {
    vertical-align: middle;
}

.loader {
    color: white;
    width: 48px;
    height: 48px;
    border: 5px solid currentColor;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#main-loader {
    position: absolute;
    top: 90px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: brightness(0.4);
}

#main-loader .loader {
    display: block;
    border-width: 7px;
    height: 64px;
    width: 64px;
}