.split {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.left .image img {
    width: 100%;
    height: 25vh;
    object-fit: cover;
    border-radius: 15px;
}

.left .content {
    max-width: 400px;
}

.left h1 {
    text-align: center;
    font-size: 30px;
    margin: 0px;
}

.left h4,
.left p {
    text-align: center;
    margin: 5px 0px 0px 0px;
    color: var(--tertiary-text);
}

.left h4 {
    display: none;
    font-weight: normal;
}

.left form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.left a.back-btn {
    position: absolute;
    z-index: 2;
    top: 25px;
    left: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12.5px;
}

.checkmark-container {
    font-size: 13px;
}

.right {
    display: none;
}

.right img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50px;
    filter: brightness(0.75);
}

.deco {
    position: relative;
}

.deco .img-deco-1 {
    position: absolute;
    top: 40px;
    left: 0;
    width: 20px;
    height: 20px;
    clip-path: path('M20 0 A20 20 0 0 0 0 20 L0 0 Z');
    background: var(--primary-bg);
}

.deco .img-deco-2 {
    position: absolute;
    top: 20px;
    left: 0;
    width: 40px;
    height: 20px;
    background: var(--primary-bg);
    border-bottom-right-radius: 40px;
}

.deco .img-deco-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 20px;
    background: var(--primary-bg);
}

.deco .img-deco-4 {
    position: absolute;
    top: 0;
    left: 40px;
    width: 20px;
    height: 20px;
    clip-path: path('M20 0 A20 20 0 0 0 0 20 L0 0 Z');
    background: var(--primary-bg);
}

.location-data {
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin: 10px;
    text-align: right;
    color: white;
    z-index: 1;
}

.location-data h3 {
    margin: 0px;
    color: white;
    font-size: 14px;
    font-weight: normal;
}

.location-data h2 {
    font-size: 20px;
    margin: 0px;
}

@media screen and (min-width: 1024px) {
    body {
        display: flex;
    }

    .image {
        display: none;
    }

    .split {
        width: 50%;
    }

    .left h4 {
        display: block;
    }
    .left form {
        margin-top: 30px;
    }

    .right {
        display: flex;
    }

    .deco .img-deco-1 {
        top: calc(5% + 80px);
        left: 5%;
        width: 40px;
        height: 40px;
        clip-path: path('M40 0 A40 40 0 0 0 0 40 L0 0 Z');
    }

    .deco .img-deco-2 {
        top: calc(5% + 40px);
        left: 5%;
        width: 80px;
        height: 40px;
    }

    .deco .img-deco-3 {
        top: 5%;
        left: 5%;
        width: 80px;
        height: 40px;
    }

    .deco .img-deco-4 {
        top: 5%;
        left: calc(5% + 80px);
        width: 40px;
        height: 40px;
        clip-path: path('M40 0 A40 40 0 0 0 0 40 L0 0 Z');
    }

    .location-data {
        bottom: 5%;
        right: 5%;
        margin: 25px;
    }

    .location-data h2 {
        font-size: 20px;
    }
}
