.bodybox {
    background: #FFF;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.left, .right {
    width: 50%;
}

.login_php {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute; top: 0; left: 0;
    background: rgb(0, 169, 224);
    background: -moz-linear-gradient(top, rgb(0, 169, 224) 0%, rgb(2, 62, 124) 100%);
    background: -webkit-linear-gradient(top, rgb(0, 169, 224) 0%, rgb(2, 62, 124) 100%);
    background: linear-gradient(to bottom, rgb(0, 169, 224) 0%, rgb(2, 62, 124) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1bbc9b', endColorstr='#19999b',GradientType=0 );
}

.right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: rgb(0, 169, 224);
    background: -moz-linear-gradient(top, rgb(0, 169, 224) 0%, rgb(2, 62, 124) 100%);
    background: -webkit-linear-gradient(top, rgb(0, 169, 224) 0%, rgb(2, 62, 124) 100%);
    background: linear-gradient(to bottom, rgb(0, 169, 224) 0%, rgb(2, 62, 124) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1bbc9b', endColorstr='#19999b',GradientType=0 );
}

.right p {
    width: 75%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 25px;
    line-height: 42px;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
}

.inner-container {
    width: 360px;
    margin: 0 auto;
    position: relative;
    height: 100vh;
}

.lang {
    text-align: center;
    width: 100%;
    padding: 2em 0;
    margin-bottom: 2em;
}

.lang a {
    display: inline-block;
    text-align: center;
    padding: .25em;
    width: 2.75em;
    color: #0D4E88;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    transition: 0.5s;
    border-radius: 5px;
    text-decoration: none;
}

.lang a:active {
    color: #00A9E0;
}

.lang a:hover {
    color: #0D4E88C7;
    text-decoration: underline;
    opacity: 0.8;
    transition: 0.1s;
}

.loginBox {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 30px;
    background-color: #fff;
    margin: 0 auto;
    /*
    -webkit-box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.45);
    box-shadow: 0px 3px 4px 0px rgba(0,0,0,0.45);
     */
}

.loginHead {
    display: block;
    background-color: #fff;
}

.loginHead img {
    display: block;
    margin: 0 auto;
}

.loginBox h3 {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 1em;
}

.loginBox .control-group {
    margin-bottom: 3em;
}

.loginBox .form-actions {
    background: transparent;
    border: 0;
    padding: 0;
    margin-bottom: 0;
}

.loginBox .form-actions button {
    margin: 0 auto 1em;
    background: #023e7c;
    border: 0;
    text-transform: uppercase;
    box-shadow: none;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    border-radius: 4px !important;
    padding: .5em 0;
    text-shadow: none;
    transition: 0.5s;
}

.loginBox .form-actions button:hover {
    opacity: 0.8;
    transition: 0.1s;
}

.loginBox .form-actions a {
    text-align: center;
    display: block;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #0D4E88;
}

.loginBox .form-actions a:hover {
    text-align: center;
    display: block;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #0D4E88C7;
}

.loginBox input[type='text'],
.loginBox input[type='password'] {
    width: 100%;
    background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
    border: 0;
    border-bottom: 2px solid #e1e1e1;
    font-family: 'Roboto', sans-serif;
    border-radius: 0;
    box-shadow: none;
    padding: .25em 0;
    font-size: 14px;
}

.info {
    text-align: center;
    font-size: 12px;
    color: #9e9e9e;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    line-height: 16px;
    margin-top: 1em;
    display: block;
}

.info a {
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #19999B;
}

.bottom {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #9e9e9e;
    font-weight: 300;
    text-align: center;
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.login_link_div {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: white;
    background-color: white;
    padding: 5px 15px 5px 15px;
    margin-top: 30px;
    border-radius: 17px;
}

/* Mobile */

@media only screen and (max-width: 740px) {

    .bodybox {
        display: block;
    }

    .left {
        width: 100%
    }

    .right {
        display: none;
    }

    .loginBox {
        width: 70%;
    }

    .bottom {
        padding-top: 5em;
        position: static;
    }

}
