.login-pop {
    position: fixed;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1099;
    background-color: gray;
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease;
}

.login-pop.show {
    visibility: visible;
    opacity: 1;
}

.login-pop .pop-box {
    background-color: rgb(255, 255, 255);
    width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    height: 70vh;

}

.login-pop .pop-box .img-area {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    color: rgb(255, 255, 255);
    font-style: 27px;
    justify-content: center;
    height: 70vh;

    /* align-items: center; */
}

.login-pop .pop-box .img-area span {
    font-size: 18px;
    font-weight: 400;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 0
    }

    49% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.login-pop .pop-box .img-area .pop-img {
    position: absolute;
    background-image: url(images/gallery/interior/1.jpg);
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: ZoomInOut 5s infinite;
}



@keyframes ZoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

}

.login-pop .pop-box .pop-form {
    flex: 0 0 35%;
    max-width: 50%;
    margin: auto;

}

.login-pop .pop-box .pop-form .close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

.login-pop .pop-box .pop-form h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.login-pop .pop-box .pop-form .form-control {
    height: 45;
    margin-bottom: 5px;
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    font-size: 18px;
    color: gray;
}

.login-pop .pop-box .pop-form p {
    width: 100%;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    background-color: blueviolet;
    color: white;
    line-height: 40px;
    margin-top: 8px;
    cursor: pointer;
    text-align: center;
}

/* resposive  */
@media(max-width:767px) {
    .login-pop .pop-box {
        width: 80%;
        top: 40%;
        left: 50%;


    }

    .login-pop .pop-box .img-area {
        display: none;
    }

    .login-pop .pop-box .pop-form {
        flex: 0 0 70%;
        max-width: 100%;


    }
}