@include body-class(true) {

  .dashui-login-form {
    form {
      .dashui-google-login-button {
        width: 100%;
        height: 40px;
        background-color: $white;
        border: 1px solid #ddd;
        color: #333333;
        font-size: 15px;
        text-transform: none;

        .sui-icon-google-login {
          background-image: url('../../images/google-icon.png');
          background-image: -webkit-image-set(
                          url('../../images/google-icon.png') 1x,
                          url('../../images/google-icon@2x.png') 2x
          );
          background-image: image-set(
                          url('../../images/google-icon.png') 1x,
                          url('../../images/google-icon@2x.png') 2x
          );
          background-repeat: no-repeat;
          background-position: center;
          height: 20px;
          margin-right: 10px;
        }

        &:hover,
        &:focus,
        &:active {
          background-color: #E6E6E6;
          color: #333333;
          outline: none;
          box-shadow: none;
        }

        &:focus {
          border: 1px solid #aaaaaa;
        }
      }
    }
  }
}