body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    line-height: 1.5;
}

* {
    box-sizing: border-box;
    margin: 0px;
}

.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: rgb(255, 255, 255);
    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(../images/pareena-lmg2.jpeg);
    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: 30px;
    /* background: darkcyan; */

}

.login-pop .box a {
    margin-top: 20px;
    color: #fb4040;
    font-weight: 400;
    font-size: 18px;

}


.login-pop .box .Form .close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

.login-pop .box .Form h1 {
    font-size: 23px;
    margin-bottom: 30px;
    font-weight: 400;
}

.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: rgb(3, 3, 3);
    background: rgb(255, 255, 255);
}

.login-pop .box .Form button {
    width: 100%;
    font-size: 18px;
    border: none;
    border-radius: 20px;
    background-image: linear-gradient(to right, #fb4040, #8300d4) !important;
    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%;


    }
}