* {
    box-sizing: border-box;
}

.loginWrap {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #f1f3f7;
    font-family: Roboto-Condensed, sans-serif;
    font-size: 16px;
    overflow: hidden;
}

.logInContainer__leftSection {
    min-height: 100vh;
    background-color: #f1f3f7;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    min-width: 420px;
    -webkit-box-shadow: 3px 0 28px hsla(0, 0%, 45%, .5);
    box-shadow: 3px 0 28px hsla(0, 0%, 45%, .5);
    padding: 30px 50px;
}

@media only screen and (max-width: 768px) {
    .logInContainer__leftSection {
        width: 100%;
        /*min-width: 320px;*/
        -webkit-box-shadow: none;
        box-shadow: none;
        overflow-x: hidden;
        position: static;
    }
}

.logInContainer__rightSection {
    width: 75%;
    z-index: 1;
    min-height: 100%;
    height: auto;
    position: fixed;
    top: 0;
    right: 0;
    background: url(../images/login-bg.png) no-repeat center center/cover;
    /*background: url(login-bg.jpg) no-repeat 0;*/
    /*background-size: cover;*/
    /*background-position: left 50% top 50%;*/
}

@media only screen and (max-width: 768px) {
    .logInContainer__rightSection {
        display: none;
    }
}

form {
    padding: 20px;
    padding-top: 30px;
}

/*.powered{padding: 10px; margin-top: 0px; line-height: 25px;}*/
.powered a {
    color: #111;
    text-decoration: none;
}

.powered a:hover {
    font-style: italic;
}

.powered {
    position: absolute;
    padding-bottom: 10px;
    margin: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    text-align: center;
    background-color: #f1f3f7;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.group {
    position: relative;
    margin-bottom: 15px;
}

input {
    font-size: 18px;
    padding: 2px 10px;
    -webkit-appearance: none;
    display: block;
    background: transparent;
    color: #03a9f4;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
}

input:focus {
    outline: none;
}

/*Remove Autoculor input field*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #f1f3f7 inset !important;
}

#__lpform_email,
#__lpform_user_password_icon {
    display: none !important;
}

/* Label */
label {
    display: none;
    color: #999;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

input:focus ~ label, input.used ~ label {
    top: -12px;
    -webkit-transform: scale(.75);
    transform: scale(.75);
    left: -2px;
    color: #4a89dc;
    display: block;
}

/* Underline */
.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before, .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #4a89dc;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

/* active */
input:focus ~ .bar:before, input:focus ~ .bar:after {
    width: 50%;
}

/* Highlight */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active */
input:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* Animations */
@-webkit-keyframes inputHighlighter {
    from {
        background: #4a89dc;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #4a89dc;
    }
    to {
        width: 0;
        background: transparent;
    }
}

.buttonui {
    padding: 8px 45px;
    overflow: hidden;
    border: 1px solid #1593e0;
    outline: none;
    border-radius: 3px;
    background-color: #1593e0;
    color: #ecf0f1;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 20px auto;
    display: block;
    width: 100%;
}

.buttonui:hover {
    background-color: #ecf0f1;
    border: 1px solid #1593e0;
    color: #1593e0;
}

/* Ripples container */
.ripples {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}

.ripplesCircle {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
    -webkit-animation: ripples .4s ease-in;
    animation: ripples .4s ease-in;
}

.remember-wrap {
    overflow: hidden;
    margin: 20px auto 20px;
    position: relative;
}

.remember-wrap label {
    float: left;
    margin-left: 21px;
    position: static;
    display: block;
    color: #333;
    pointer-events: auto;
    cursor: pointer;
}

.remember-wrap a {
    float: right;
    padding: 0;
}

/* Ripples animation */

@-webkit-keyframes ripples {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    100% {
        width: 200%;
        padding-bottom: 200%;
        opacity: 0;
    }
}

@keyframes ripples {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    100% {
        width: 200%;
        padding-bottom: 200%;
        opacity: 0;
    }
}

/*@media only screen and (min-width : 480px) and (max-width: 767px) {*/
/*    .loginForm{ width: 65%; max-width: 350px; }*/
/*}*/
@media screen and (max-width: 479px) {
    .loginForm {
        width: 65%;
        min-width: 250px;
    }

    .remember-wrap {
        display: none;
    }

    .loginForm h1 {
        padding: 10px;
        font-size: 2em;
    }

    img.login-logo {
        margin: 20px auto 5px !important;
    }

    form {
        padding: 15px 20px 5px;
    }

    .group {
        margin-bottom: 15px;
    }
}

img.login-logo {
    width: 100%;
    margin: 40px 0px 0px;
    padding: 5px 25px; /*max-height: 100px;*/
}

input[type=checkbox] {
    -webkit-appearance: checkbox;
    pointer-events: auto;
    float: left;
    width: auto;
    position: absolute;
    left: 0;
    top: 20%;
}

.loginForm input[type='password'] {
    border-bottom: 1px solid #0098d8;
    font-size: 20px;
    color: #369;
    font-weight: bold;
}

.loginForm input::placeholder {
    color: #0098d8 !important;
}

.loginForm {
    font-size: 16px;
    max-width: 280px;
    margin: 0 auto;
}


.lockscreen-image {
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    max-width: 40%;
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, .3);
    margin: 0 auto;
    display: block;
}
