#online-chat {
    display: none;
}

/*Start Global Style*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url("/assets/account/account-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    position: relative;
}

.container {
    width: calc(100% - 10px);
    max-width: 1100px;
    margin: auto;
    padding: 20px
}

.account-outer {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.account-outer > div {

}


.account-left {
    width: 55%
}
.login {
    width: 45%
}

/*Start Login Style*/
.login {
    background-color: #fafafa;
    border-radius: 0 10px 10px 0;
    padding: 100px 30px;
    border: 1px solid #EAEAEA;
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    position: relative;
}

.login h1 {
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
}

.login input {
    width: 100%;
    margin-bottom: 30px;
    border: none;
    background-color: #eeeeef;
    border-radius: 30px;
    font-size: 14px;
    box-shadow: none;
    outline: none;
}

input:focus {
    background: #e3e3e3;
}

input[type="checkbox"] {
    margin-right: 5px;
}


.login a {
    text-decoration: none;
    color: #278bda;
    transition: 0.3s all ease-in-out;
}

.login a:hover {
    color: rgba(42,49,211,1);
}

.login button {
    width: 100%;
    border: none;
    background: rgb(36,232,223);
    background-image: linear-gradient(to left, rgba(42,49,211,1) 0%, rgba(36,232,223,1) 100%);
    background-size: 120%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s all;
    border-radius: 30px;
    margin-bottom: 25px;
}
.login input,
.login button {
    padding: 13px 20px;
}

.login button:hover {
    background-position: right;
}

.login hr {
    width: 30%;
    display: inline-block
}

.login p {
    display: inline-block;
    margin: 0px 10px 30px;
}

.login ul {
    list-style: none;
    margin-bottom: 40px;
}

.login ul li {
    display: inline-block;
    margin-right: 30px;
    cursor: pointer;
}

.login ul li:hover {
    opacity: 0.6
}

.login ul li:last-child {
    margin-right: 0
}

.login .copyright {
    display: inline-block;
}

/*Start Register Style*/
.account-left {
    display: flex;
    align-items: center;
    color: #fff;
    border-radius: 10px 0 0 10px;
    text-align: center;
    padding: 50px 20px;
   /* background-image: linear-gradient(135deg, rgba(42,49,211,1) 5%, rgba(36,232,223,1) 95%);*/
    border: 1px solid #EAEAEA;
    box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
    background: url("/assets/account/com-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
}

.account-left h2 {
    margin-top: 50px;
    font-weight: bold;
}

.account-left-com-inner {
    margin-top: 50px;
    margin-bottom: 50px;
}

.login-footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    text-align: center;
    color: gray;
}

.login-footer a {
    display: inline-block;
    font-size: small;
    padding: 0 5px;
}

.alert-danger,
.alert-success {
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 15px;
}

@media(max-width: 980px) {
    .account-outer {
        margin-top: 50px;
    }
    .login, .account-left {
        width: 100% !important;
        border-radius: 10px !important;
    }
    .account-left {
        order: 2;
        padding: 50px 10px;
    }
    .login {
        order: 1;
        border-radius: 10px 10px 0px 0px;
        padding: 50px 20px;
        padding-bottom: 65px;
        margin-bottom: 50px;
    }
    .login h1 {
        font-size: 30px
    }
    .login button,
    .login input
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}