body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.5;
}

* {
    box-sizing: border-box;
    margin: 0;
}

.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;

}

@media only screen and (min-width:576px) {
    .login-popup .spl-box.box {
        width: 550px;
    }
}

.spl-box-logo {
    width: 250px;
}

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

.login-popup .box .img-area {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-popup .box .img-area h1 {
    font-size: 30px;
}

.login-popup .box .img-area .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    animation: zoomInOut 7s linear infinite;
    z-index: -1;

}

@keyframes zoomInOut {

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

    50% {
        transform: scale(1.1);
    }
}

.login-popup .box .form {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px 30px;
}

.login-popup .box .form {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 40px 30px 30px 30px;
    text-align: center;
    border: 2px solid #017efa;
    border-radius: 4px;
}

.login-popup .spl-box.box .form h3 {
    color: #000000;
    font-size: 30px;
    margin: 0 0 30px;
}

.login-popup .box .form .form-control {
    height: 45px;
    margin-bottom: 30px;
    width: 100%;
    border: none;
    border: 1px solid #cccccc;
    font-size: 15px;
    color: #000000;
}

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

.login-popup .box .form label {
    font-size: 15px;
    color: #555555;
}

.login-popup .box .form .btn {
    width: 100%;
    /*background-color: #E91E63;*/
    margin-top: 20px;
    height: 45px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
}

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

.login-popup .box .form .close {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 30px;
    cursor: pointer;
}

.login-popup .spl-box.box .form .close {
    right: 7px;
    top: 7px;
}

.login-popup .spl-box.box.spl-box-2 .form .close {
    top: 16px;
    right: 16px !important;
    left: auto !important;
    color: #f00 !important;
}

.modal-spl .form-control:focus {
    box-shadow: inset 0 1px 1px rgb(45 45 45 / 7%), 2px 2px 8px 0px rgb(129 129 129 / 60%) !important;
}

/*responsive*/
@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 .spl-box.box .form h3 {
        color: #000000;
        font-size: 22px;
        margin: 0 0 25px;
    }
}

@media only screen and (max-width: 575px) {
    .login-popup .box .form {
        padding: 30px 20px 20px 20px;
    }

}