@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    
    margin:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.login-popup{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1099;
    background-color: rgba(0,0,0,0.6);
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease;
}

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

.login-popup .box{
    background-color: #ffffff;
    width: 750px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    margin-left: 50px;
    transition: all 1s ease;
}

.login-popup.show .box{
    opacity: 1;
    margin-left: 0;
}

.login-popup .box .img-area{
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.login-popup .box .img-area .img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('1.jpg');
    background-size: cover;
    background-position: center;
}   
.login-popup .box .form{
    flex: 0 0 50%;
    max-width: 50%; 
    /* background-color: aqua; */
    padding: 30px;
}

.login-popup .box .form h1{
    /* color: #0000; */
    font-size: 30px;
    margin: 0 0 30px;
    text-align: center;
}

.login-popup .box .form .form-control{
    height: 45px;
    margin-bottom: 30px;
    width: 100%;
    border: none;
    border: 1px solid black;
    font-size: 15px;
    color: black;
    padding-left: 15px;
    border-radius: 10px;
}


.login-popup .box .form .btn{
    width: 100%;
    background-color: rgb(93, 93, 223);
    margin-top: 15px;
    height: 45px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    text-transform: uppercase;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.login-popup .box .form .btn:focus{
    outline: none;
}

.login-popup .box .form .close{
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 15px;
    font-weight: bolder;
    cursor: pointer;
}

/* responsive popup */

@media(max-width: 767px){
    .login-popup .box{
        width: calc(100% - 30px);
    }
    .login-popup .box .img-area{
        display: none;
    }
    .login-popup .box .form{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .login-popup .box .form h1{
        /* color: #0000; */
        text-align: center;
    }
}