*, *:before, *:after {
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
/* Background image set in index.html file in <div id="bg"> */
#bg {
  position: fixed; 
  top: -50%; 
  left: -50%; 
  width: 200%; 
  height: 200%;
}
#bg img {
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  margin: auto; 
  min-width: 50%;
  min-height: 50%;
}
body {
    height: 100%;
    font-family: arial, sans-serif;
}
.wrapper {
    z-index: 1;
    position: relative;
    height: 100%;
}
.show-mobile {
    display: none;
}
.header {
    width: 100%;
    height: 100px;
}
.header-container {
    width: 100%;
    margin-top:5px;
    margin: auto;
}
.logo {
    float: left;
    width:50%;
    max-width: 400px;
}
.logo img {
    width: 100%;
}
.login {
    float: right;
    width:50%;
}
.hub_login_widget {
    float: right;
    display: inline-block;
    margin: 0px 0px 0px 5px;
    padding: 20px;
}


/* Footer */
.footer {
    position: fixed;
    bottom: 0px;
    width:100%;
    z-index: 6;
    text-align: center;
    background: #000;
}
.footer a {
    display: inline-block;
    line-height: 30px;
    padding:0px 10px;
    background-color: #000;
    color: red;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
}
.footer a:hover {
    background-color: #fff;
}

.footer p{
    color:#fff;
}
/* Sign up form */
.hub_new_member_form {
    background-color: rgba(63, 63, 63, 0.5);
    max-width: 440px;
    display: block;
    float: none;
    margin:100px auto 20px;
    margin-left:20px;
}
.hub_new_member_form h3 {
    color: #fff;
    background: none;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
}
.hub_new_member_form .formrow {
    border-top: 0px;
}
.hub_new_member_form .forminput {
    width: 94%;
}
.hub_new_member_form #emailAddress {
    padding: 7px;
    font-size: 18px;
    border: 0px;
}
.hub_new_member_form .formrow p, 
.hub_new_member_form .formrow label,
.hub_new_member_form a {
    color: #fff;
}
.hub_new_member_form .formrow label {
    width:22%;
}
.hub_new_member_form #submit_button_row .submit_button {
    background-color: #e74c3c;
    border: none;
    box-shadow: none;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
    height: 76px;
    line-height: 70px;
    text-transform: uppercase;
    color: white;
    background: #d92516;
    width:90%;
    margin:0 5%;
}
.show-mobile .btn {
    width:90%;
    margin:0 5%;
    background-color: #e74c3c;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
    height: 76px;
    line-height: 70px;
    display: block;
    text-align: center;
    text-decoration: none;
    color:#fff;
    border-radius: 10px;
}
.photo_block {

}

@media (max-width: 639px) {
    .header {
        height: auto;
    }
    .logo {
        float: none;
        margin:0 auto;
        width:100%;
    }
    .login {
        float: none;
        width:100%;
        overflow: hidden;
    }
    .hub_login form input,
    .hub_login form input[type="submit"] {
        display: inline;
        float: left;
        width: 97.91666666666666%;
        margin: 0px 1.0416666666666665% 20px 1.0416666666666665%;
    }
    .hub_new_member_form {
        margin:0 auto;
        margin-bottom:20px;
    }
    
}

@media (max-width: 500px) {
    #bg {
        display: none;
    }
    html {
        height: auto;
    }
    body {
        background: black;
        height: auto;
        margin-bottom: 40px;
    }
    .header {
        height: auto;
        padding-bottom: 20px;
    }
    .show-mobile {
        display: block;
    }
    .hub_login_widget {
        display: none;
    }
    .hub_new_member_form {
        background: #212121;
        width: 98%;
        margin: 0px 1%;
        position: relative;
        top:0;
        left: 0;
    }
}