.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 .box {
    background-color: rgba(107, 107, 107, 0.897);
    width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;

}

.login-pop .box .img-area {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-pop .box .img-area .img {
    position: absolute;
    background-image: url(../img/main-img/Swarnim_Main_img.png);
    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 .box .Form {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 50px;

}

.login-pop .box .Form .close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

.login-pop .box .Form h1 {
    font-size: 30px;
    margin-bottom: 30px;
}

.login-pop .box .Form .form-control {
    height: 45;
    margin-bottom: 30px;
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    outline: none;
    font-size: 18px;
    color: gray;
}

.login-pop .box .Form button {
    width: 100%;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    background-color: blueviolet;
    color: white;
    line-height: 40px;
    margin-top: 8px;
    cursor: pointer;
}

/* resposive  */
@media(max-width:767px) {
    .login-pop .box {
        width: 80%;


    }

    .login-pop .box .img-area {
        display: none;
    }

    .login-pop .box .Form {
        flex: 0 0 100%;
        max-width: 100%;


    }
}