.user-register {
    min-height: 200px;
    padding: 30px 0;
}

.user-register .content-data {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 35px 0;
}

.content-data .img-info {
    width: 368px;
    height: 298px;
}

.content-data .text {
    max-width: 500px;
    text-align: center;
    margin-top: 30px;
}

.text h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.792px;
}

.text p {
    text-align: center;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.352px;
}

.btn-home{
    width: 252px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--color-white-01);
    background: var(--color-primary);
    backdrop-filter: blur(5.5px);
    color: var(--color-white-01);
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .content-data .img-info {
        width: 100%;
    }

    .content-data .text {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
        margin-top: 30px;
    }
}