body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.wrapper-card {
    max-width: 600px;
    padding: 70px;
    background: rgba(255, 255, 255, 0.9);
}

.text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image {
    display: flex;
    justify-content: center;
    width: 100%
}

.images-bg {
    position: absolute;
    z-index: -1;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.images-bg img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    margin: 0;
}

bdo,
a {
    color: #000000;
    text-decoration: none;
}

@media (min-width: 786px) {
    .wrapper-card {
        width: 100%;
    }
}