.forms-container h5 {
    font-size: 35px;
    font-weight: 500;
    text-align: left;
    color: #02093A;
    padding-bottom: 1rem;
}

.forms-container h5 b {
    font-weight: 700;
    color: #02093A;
}

.title-forms {
    font-size: 26px;
    color: #fff;
    font-weight: 100;
}

.forms-box {
    display: flex;
    flex-direction: row;
    padding: 2rem;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    border: 1px solid #70707033;
    background: #00091a9f;
    /* fundo semitransparente */
    backdrop-filter: blur(10px);
    /* aplica blur no que está atrás */
    -webkit-backdrop-filter: blur(10px);
}

.forms-container-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 40%;
}

.info-privacity {
    display: flex;
    flex-direction: row;
    gap: 2px;
    font-size: 13px;
}

.btn-forms {
    width: 100%;
}

.forms-container-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 30%;
    height: 100%;
    display: flex;
    text-align: left;
    justify-content: top;
    align-items: center;
}

.forms-container-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forms-container-menu p {
    align-items: center;
    text-align: left;
}

.footer-container {
    color: #000000;
    text-align: center;
}

.line-footer {
    width: 100%;
    height: 1px;
    background: #000000;
    margin-block: 1rem;
}

@media (max-width: 768px) {
    .forms-container {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .forms-container h5 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    color: #02093A;
    padding-bottom: 1rem;
}
    .forms-box {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .title-forms {
        font-size: 20px;
        text-align: left;
        font-weight: 200;
    }
    .forms-container-inputs {
        width: 100%;
    }
    .forms-container-menu {
         display: none;
    }
    .footer-container {
        text-align: center;
    }
    .footer-container {
        font-size: 14px;
    }
}