body {
    background: #f6f6f6;
    height: 100%;
    margin: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.login-box{
    width: 75%;
    height: 600px;
    max-width: 960px;
    background: #ffffff;
    position:absolute;
    color: #c6c0c0;
    top:50%;
    left:50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.login-image{
    width: 55%;
    max-width: 525px;
    height: 625px;
    position: relative;
    top: -22px;
    left: 5px;
    float: right;
    background-image: url(../img/login-image.png);
    background-repeat: no-repeat;
}

.login-form{
    width: 45%;
    max-width: 425px;
    float: left;
}

.title{
    margin-left : 10%;
    margin-top: 10%;
    color : #333333;
    font-size: 35px;
    width: 30%;
}

.login-dot{
    width: 6px;
    height: 6px;
    background: #127df8;
    float: right;
}

.login-text{
    width: 95%;
}

.login-inputs{
    color: #293043;
    margin-top: 110px;
}

.inner-addon {
    position: relative;
}

/* style icon */
.inner-addon .fa {
    position: absolute;
    padding: 10px;
    font-size: 15px;
    pointer-events: none;
    margin-top: 2px;
}

/* align icon */
.left-addon .glyphicon  { left:  0px;}
.right-addon .glyphicon { right: 0px;}

/* add padding  */
.left-addon input  { padding-left:  30px; }
.right-addon input { padding-right: 30px; }

.toolbox > .pull-right{
    margin-top: -30px;
}


.cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}
.cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098A9;
    transition: all 0.2s ease;
}
.cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #506EEC;
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}
.cbx span:last-child {
    padding-left: 3px;
}
.cbx:hover span:first-child {
    border-color: #506EEC;
}

.inp-cbx:checked + .cbx span:first-child {
    background: #506EEC;
    border-color: #506EEC;
    animation: wave 0.4s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

.login-button{
    margin-top: 25px;
}