#loader-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    position: absolute;
    background: rgba(255, 255, 255, 0.62);
    display: none
}
#loader {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    z-index: 1001;
}

    #loader:before {
       content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #3679bb;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-bottom-color: rgb(147, 207, 240);
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }
#loader img {
    width: 50px;
    position: absolute;
    margin-left: 50px;
    margin-top: 50px;
}

    @-webkit-keyframes spin {
        0%   {
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   {
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
.gbutton {
    background: white;
    color: #2C73BA;
    display: block;
    border: 1px solid #E3E3E3;
    margin-top: 5px;
    height: 40px;
    line-height: 40px;
    text-align: left;
    max-width: 300px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 5px;
}
.socialSignIn img {
    height: 100%;
    float: left;
    padding: 0 45px 0 0;
    max-width: 100%;
}

input {
    width: 305px;
    padding: 12px 20px;
    margin: 10px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    outline: 0
}

label input {
  display: none;
}
label span {
  height: 15px;
  width: 15px;
  border: 1px solid #ccc;
  display: inline-block;
  position: relative;
  cursor: pointer;
  border-radius: 2px;
}
[type=checkbox]:checked + span:before {
  content: '\2714';
  position: absolute;
  top: -0px;
  left: 0;
}

#rememberpw {
    float: left;
    margin-left: 5px;
    margin-top: 2px;
    font-size: 12px;
    margin-right: 10px;
}
#forgotpassword {
    float: right;
    margin-top: 2px;
    margin-right: 9px;
    font-size: 12px;
    color: #3679bb;
}
#loginSubmit {
    width: 305px;
    margin: 20px 0;
}
.login {
    width: 400px;
    margin: -430px auto 50px auto;
    z-index: 2;
    position: relative;
    min-height: 450px;
    box-shadow: 0 4px 2px -2px gray;
}
#fbutton{
    min-height: 40px;
    height: 40px;
}
