body, html {
    width: 100%;
    height: 100%;
    display: block;
    color: #162d3d;
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
}

.login .header {
    justify-content: space-between;
    z-index: 4;
    width: 100%;
}

.login .header .dd-logo {
    margin: 75px;
    font-size: 45px;
    font-weight: 400;
}

.login .header .dd-logo .deliver {
    color: #172e3c;
}

.login .header .dd-logo .daily {
    color: #009688;
}

.login .container.login-form {
    max-width: 1000px !important;
}

.login .login-title {
    font-size: 56px;
    text-align: center;
    font-weight: 300 !important;
    padding-bottom: 40px;
}

.login form {
    padding: 3em 2em 2em 2em;
}

.login .group {
    position: relative;
}

.login .group.margin-bottom {
    margin-bottom: 45px;
}

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

.login input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    -webkit-appearance: none;
    display: block;
    background: #ffffff;
    color: #636363;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
}

.login input:focus {
    outline: none;
}

/* Label */
.login .group.has-error label {
    color: #e91e63;
}

.login .group.has-error input {
    color: #e91e63;
}

.login label {
    color: #333;
    font-size: 20px;
    font-weight: 300;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: all 0.2s ease;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";
    -webkit-transition-delay: 9999s;
}

/* active */
.login input:focus ~ label, input.used ~ label {
    top: -20px;
    transform: scale(.75);
    left: -2px;
    /*color: #03a9f4;*/
}

/* Underline */
.login .bar {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    border: none;
}

.login .bar:before, .bar:after {
    content: '';
    height: 1px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #03a9f4;
    transition: all 0.2s ease;
}

.login .bar:before {
    left: 50%;
}

.login .bar:after {
    right: 50%;
}

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

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

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

/* Animations */
@keyframes inputHighlighter {
    /*from { background: #03a9f4; }*/
    /*to 	{ width: 0; background: transparent; }*/
}

.social-button.office-button {
    height: 55px;
    width: 350px;
    border-radius: 1px;
    background-color: #fff;
    color: #262626;
    cursor: pointer;
    outline: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    vertical-align: middle;
}

.buttonContentWrapper {
    background-color: #2196f3;
    border: 1px solid transparent;
    color: #fff;
    height: 52px;
}

.buttonIcon {
    float: left;
    width: 50px;
    height: 50px;
    background: white;
}

.buttonIcon img {
    height: 50px;
}

.buttonContents {
    float: left;
    height: 50px;
    color: #fff;
    background-color: #2196f3;
    text-align: center;
    width: 240px;
    font-size: 20px;
    padding: 10px;
}

.clear-both {
    clear: both;
}

.right-border {
    border-right: 1px solid #858f96cc;
}

.full-height {
    height: 280px;
}

.flex-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.login-btn {
    background: #ffff;
    border: 1px solid #2196f3;
    color: #2196f3;
    font-size: 18px;
    border-radius: 40px;
    text-align: center;
    padding: 10px;
    width: 150px;
    margin-top: 10px;
}

.login-btn:focus {
    outline: 0;
}

.login-btn:hover {
    -moz-transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    background: #2196f3;
    color: #ffffff;
}

.copy-right {
    margin-top: 50px;
    font-size: 14px;
    font-family: HelveticaNeueW01-45Ligh, HelveticaNeueW02-45Ligh, HelveticaNeueW10-45Ligh, sans-serif;
    color: #858f96;
}

.copy-right a {
    color: #459fed;
}

@media screen and (max-width: 990px) {
    .login .header .dd-logo {
        margin: 15px 10px;
        font-size: 30px;
        text-align: center;
    }

    .login .login-title {
        font-size: 36px;
        text-align: center;
        padding-bottom: 0px;
    }

    .full-height {
        height: auto;
    }

    .right-border {
        border-right: none;
    }

    .desktop {
        display: none;
    }

    .login .container.login-form {
        max-width: 425px !important;
    }

    .login-btn {
        background: #2196f3;
        border: 1px solid #2196f3;
        color: #fff;
        width: 100%;
    }

    .login-btn:hover {
        -moz-transition: all 0.8s ease-in-out;
        -webkit-transition: all 0.8s ease-in-out;
        -o-transition: all 0.8s ease-in-out;
        -ms-transition: all 0.8s ease-in-out;
        transition: all 0.8s ease-in-out;
        background: #fff;
        border: 1px solid #2196f3;
        color: #2196f3;
    }
}

.mobile-social {
    margin-top: 20px;
}

.mobile-social .text-continer {
    padding-top: 12px;
}

.mobile-social .text {
    font-size: 18px;
    font-weight: 500;
}

.mobile-social img {
    height: 40px;
}

@media screen and (min-width: 990px) {
    .mobile {
        display: none;
    }
}


