body {
    margin: 0;
    padding: 0;
}

.content {
    background-color: #FFFFFF;
    width: 100%;
    height: 100vh;
}

.content > .non-path {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 80vh;
}

.text-label {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #89969F;
}

.text-label-error {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #F42B3D;
}

a {
    text-decoration: none;
}

a:link {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a {
    padding-top: 5px;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #0099CC;
}

a:hover {
    color: #F00;
}

.m-input-error {
    background: #FFFFFF;
    border: 1px solid #F44336;
    box-sizing: border-box;
    border-radius: 6px;
}

.m-text-small-error {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: #F42B3D;
}

.m-hidden {
    display: none;
}

.m-button-internal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-flags-icons {
    height: 20px;
    width: 20px;
    float: right;
    margin-left: 5px;
    cursor: pointer;
    border: none;
}

.m-brazil-rounded-icon {
    background: url('../img/br-flag.svg') no-repeat center;
}

.m-us-rounded-icon {
    background: url('../img/us-flag.svg') no-repeat center;
}

nav {
    padding: 10px;
    background: #FFFFFF;
    filter: drop-shadow(0px 4px 8px rgba(16, 24, 40, 0.05));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.error-message {
    text-align: center;
    background: #dc3545;
    color: white;
    font-size: larger;
}

::-webkit-scrollbar {
    display: none;
}

::-webkit-scrollbar-thumb {
    display: none;
}