.loginWrp {
    margin-top: 70px;
    display: table;
    width: 100%;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.05);
}

    .loginWrp .title {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 10px;
    }


#loginHrd {
    background: #ffffff;
    margin-bottom: 85px;
}

.whiteBox {
    background: #ffffff;
    padding: 15px 30px;
    min-height: 350px;
    margin-bottom: 50px;
    width: 55%;
    display: table-cell;
}

.grayBox {
    background: #001e42;
    padding: 40px 30px;
    min-height: 350px;
    color: #ffffff;
    width: 45%;
    display: table-cell;
    text-align: center;
}

    .grayBox .title {
        color: #ffffff !important;
    }


.blueColor {
    color: #007bff;
}


.loginWrp .blueBtn {
    position: relative;
    padding: 10px 24px;
    border-style: solid;
    border-width: 2px;
    border-color: #104478;
    border-radius: 5px;
    background-color: #104478;
    box-shadow: inset 0 0 100px 100px transparent;
    -webkit-transition: box-shadow 200ms ease;
    transition: box-shadow 200ms ease;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px !important;
}

    .loginWrp .blueBtn:hover {
        box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }

.loginLogo {
    margin: 0px;
    padding: 0px;
}

    .loginLogo img {
        height: 50px;
        float: left;
        margin-bottom: 20px;
        display: block;
    }

.loginWrp h1 {
    font-size: 18px;
    font-weight: 700;
    line-height: 46px;
}


.formRow {
    position: relative;
    width: 100%;
    border-color: transparent;
    padding: 0;
    margin: 0;
}

.formRow--item {
    display: block;
    width: 100%;
}

.formRow--input {
    background-color: transparent;
    position: relative;
    padding: 15px 5px 0px 0px;
    width: 100%;
    outline: none;
    border-bottom: 1px solid #104478;
    border-left: transparent;
    border-right: transparent;
    border-top: transparent;
    font-weight: 400;
    font-size: 14px;
    resize: none;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.formRow--input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

    .formRow--input-wrapper.active .placeholder {
        top: -5px;
        background-color: transparent;
        color: #000000;
        font-size: 14px!important;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

.formRow .placeholder {
    position: absolute;
    top: 50%;
    left: 0px;
    display: block;
    color: #000000;
    letter-spacing: .2px;
    -webkit-transition: all, .2s;
    transition: all, .2s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 500;
    font-size: 14px !important;
}


