body {
    font-family: "guanabara-sans", sans-serif;
}

.form-container h1 {
    font-family: "fields-display", sans-serif;
}

.bg-full {
    position: relative;
    height: 100vh;
    background-image: url('../images/fachada.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
}

.left-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: white;
}

.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.form-container {
    background-color: rgba(0, 64, 69, 0.9);
    border: 1px solid white;
    /* border-radius: 25px; */
    padding: 30px;
    width: 100%;
    max-width: 500px;
}

.form-section {
    display: none;
}

.mobile-footer {
    display: none;
}

.mobile-logo {
    display: none;
}

@media (max-width: 991px) {
    .content-wrapper {
        flex-direction: column;
    }

    .left-section {
        display: none;
    }

    .right-section {
        flex: none;
        width: 100%;
        order: 2;
    }

    .mobile-footer {
        display: block;
        text-align: center;
        color: white;
        padding: 20px;
        order: 3;
    }

    .form-container {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .bg-full {
        background-attachment: scroll;
        height: 130vh;
    }

    .right-section {
        padding: 15px;
    }

    .mobile-logo,
    .mobile-footer {
        padding: 15px;
    }

    .mobile-footer p {
        background-color: rgba(0, 64, 69, 0.9);
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .mobile-logo {
        display: block;
        text-align: center;
        padding: 20px;
        order: 1;
    }
}

@media (min-width: 768px) {
    .logo-l-margin {
        margin-left: 70px;
    }

    .address {
        background-color: rgba(0, 64, 69, 0.9);
        padding: 10px 15px;
        margin: 0;
        max-width: 500px;
        align-self: flex-start;
        margin-left: 20px;
    }

}