html,
body {
    background: #f4f6f6;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-size: 14px;
}
* {
  box-sizing: border-box;
}
body {
    /* background: transparent url(../img/bg-big.jpg) no-repeat center center / cover; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
}
a {
    color: #46B8EE;
}
a:hover {
    color: #3a9cc9;
}
.text-right {
    text-align: right;
}
.login {
    border-radius: 6px;
    width: 410px;
    position: relative;
    text-align: center;
    padding: 20px 50px 35px 50px;
    background: #fff;
}
.login:before,
.login:after {
    content: '';
    position: absolute;
    bottom: -15px;
    height: 30px;
    background: #fff;
}
.login:before {
    left: 0;
    width: 50%;
    transform: skew(0deg, 7deg);
    border-radius: 0 0 0 7px;
}
.login:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -7deg);
    border-radius: 0 0 7px 0;
}
.logo {
    position: relative;
    width: 135px;
    height: 35px;
    margin: 30px auto;
    background: transparent url(../img/mobis.png) no-repeat center center / contain;
}
.logo span {
    position: relative;
    display: inline-block;
    text-align: left;
    text-indent: -99999px;
}
.login label {
    font-size: 14px;
}
.login label.hidden {
    display: none;   
}
form {
    width: 100%;
    text-align: left;
}
input {
    position: relative;
    border: 1px solid #cbd2d4;
    border-radius: 20px;
    width: 310px;
    height: 40px;
    padding-left: 38px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 40px;
    background: #fff url(../img/login-icons.png) no-repeat 2px 2px / 35px auto;
}
input[type="password"] {
    background: #fff url(../img/login-icons.png) 2px -72px/37px auto no-repeat;
}
input[type="checkbox"] {
    float: left;
    width: auto;
    height: auto;
    padding-left: 0;
    margin-right: 10px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #cbd2d4;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #cbd2d4;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #cbd2d4;
}
:-moz-placeholder { /* Firefox 18- */
  color: #cbd2d4;
}
button,
.button {
	display: inline-block;
	text-decoration: none;
    cursor: pointer;
    background: transparent;
    color: rgba(70,180,238,1);
    border: 2px solid rgba(70,180,238,1);
    border-radius: 20px;
    width: auto;
    height: 40px;
    padding: 0 38px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 11px;
    line-height: 40px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 300ms ease-in-out;
}
button:hover,
.button:hover {
    background: transparent;
    color: #3a9cc9;
    border: 2px solid #3a9cc9;
    
}
.error {
    color: #e80000;
    font-size: 12px;
    font-weight: 300;
    text-align: left;
}
p.info {
    color: #828687;
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
    padding-top: 21px;
}

p.login-extra {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}


@media only screen and (max-width : 550px) {

    .login {
        width: 340px;
        padding: 20px 20px 35px 20px;
    }
    input {
        width: 300px;
    }
    input[type="checkbox"] {
        width: auto;
        height: auto;
    }
}
#version {
  position: fixed;
  bottom: 0;
  right: 0;
  color: #fff;
  padding: 10px 20px;
  font-size: 90%;
}


