
/* ---------------------------------------------------------
Body and Main Styling for elements
   ---------------------------------------------------------*/
    html,body {
        height: auto;
        background-color: #f2f2f2;
    }
    /* Default link styling */

a, p {
    font-family: 'lato', sans-serif;
    font-weight: 300;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'lato', sans-serif;
    margin-top: 25px;
    margin-bottom: 25px;
    font-weight: 400;
}
p {
    font-size: 1.1em;
    line-height: 1.7em;
}
h1 {
    text-transform: uppercase;
    font-size: 1.7em;
}
h2 {
    font-size: 1.7em;
    margin-bottom: 27px;
    margin-top: 30px;
}
hr {
  background-color: #f2f2f2;
  }
regline.hr {
    margin-top: 30px;
}
    a:link { 
        color:#2b2b2b;
        font-weight: 400;    
}
    a:hover, a:focus { 
        color:#cb4a3b;
        text-decoration: none;
}
    a:active { color:#2b2b2b; }
    

/* --------- Error Messages ------------*/
.errorp {
    position: absolute;
    color: red;
    top: 160px;
    text-align: left;
}
.errorp p{
    color: red;
    width: 440px;
}
/* --------- Red * Required ------------*/
p.red {
    color: red;
}
/* --------- logout button div ------------*/
.logout {
    background-color: #ffffff;
    width: 80px;
    border-radius: 5px;
    margin: 0 auto;
}
.logoutbtn:hover {
    background-color: #f2f2f2;
}

/* --------- logout p ------------*/
.logout p{
    font-size: 1em;
    color: #000000;
    text-align: center;
    padding-bottom: 1px;
}
.logout a:hover {
    text-decoration: none;
}
.alert-success {
    color: #2b2b2b;
    background-color: #f9f9f9;
    font-family: 'lato', sans-serif;
    border: 1px solid #f2f2f2;
    display: none;
}
img.alertcheck {
    display: inline;
    width: 22px;
    margin-right: 6px;
}
/* --------- Button Submit ------------*/
button.buttonsubmit {
	background-color: #cb4a3b;
    border: none;
    color: white;
    padding: 9px 20px 9px 20px;
    border-radius: 5px;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    font-size: 1.1em;
    margin-top: -10px;
}
/* --------- Register Welcome Page Frame for when Account is created successfully ------------*/
/*--.registersuccess {
    position: absolute;
    top: 160px;
	width: 100%;
    background-color: white;
    z-index: 1000;
	height: 100%;
}--*/
.registersuccess p{
    position: absolute;
    color: red;
    top: 160px;
    text-align: center;
    width: 100%;
    background-color: white;
    z-index: 1000;
	font-size: 4em;
}
/* --------- Button Cancel ------------*/
button.buttoncancel {
    background-color: #a7a9ac;
    border: none;
    color: white;
    padding: 5px 20px 5px 20px;
    border-radius: 5px;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    font-size: 1.1em;
}
label {
    font-family: 'lato', sans-serif;
    font-weight: 300;
    clear: both;
    float: left;
    color: #2b2b2b;
    margin-top: 5px;
    margin-bottom: 3px;
    letter-spacing: 0;
    line-height: 1.5em;
}
input {
    width: 100%;
    border: 1px solid #999;
    margin-bottom: 6px;
    background-color: #f9f9f9;
    padding-right: 20%;
}
/* --------- Creates space below login button ------------*/
input#user_pass.input {
    margin-bottom: 15px;
}
/* --------- Fixes checkbox width ------------*/
input#rememberme {
    width: auto;
}
input[type=text], input[type=password], input[type=phone], textarea {
 -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    padding: 7px 0px 8px 10px;
    margin: 1px 1px 3px 0px;
    border: 1px solid #777777;
    font-size: 1.1em;
    border-radius: 0;
    margin-bottom: 4px;    
}
input[type=text]:focus, input[type=password]:focus, input[type=phone]:focus, textarea:focus {
    box-shadow: 0 0 5px #cb4a3b;
    margin-left: -2px;
    border: 1px solid #cb4a3b;
}
/* --------- Buttons make confirm and cancel ------------*/
button {
    margin: 30px 0 30px 0;
}
button.buttonsubmit {
    font-weight: 500;
    font-size: 1.1em;
    margin-top: 0px;
}
a.logout {
    margin-left: 20px;
    font-weight: 400;
    color: #2b2b2b;
    display: inline-block;
}
/* ---------------------------------------------------------
OVERRIDES FOR STYLING FROM STYLE.CSS
---------------------------------------------------------*/
button {
    line-height: 1.2em;
    position: static;
    height: auto;
    width: auto;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    letter-spacing: 0;
}
a.regbtn {
    padding-left: 17px;
    font-weight: 300;
    font-size: 1.1em;
}
body, button, input, select {
    font-size: 1.4em;
    line-height: 1.4em;
}
button:hover, html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
    box-shadow: 1px 1px 4px #bcbec0;
    -webkit-box-shadow: 1px 1px 4px #bcbec0;
    -moz-box-shadow: 1px 1px 4px #bcbec0;
}
/* --------- Pushes Down Signup a ------------*/
.loginwrap input#wp-submit.button-primary {
	margin-bottom: 36px;
    margin-top: 2px;
    width: 100%;
    box-shadow: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0;
	height: 60px;
	padding-left: 0px;
	padding-bottom: 8px;
}
.loginwrap input#wp-submit.button-primary:hover {
      box-shadow: 1px 1px 4px #bcbec0;
    -webkit-box-shadow: 1px 1px 4px #bcbec0;
    -moz-box-shadow: 1px 1px 4px #bcbec0;
}
/* --------- Sign Up Link ------------*/
a#RegistrationForm {
    border-top: 1px solid #f2f2f2;
    padding-top: 14px;
    font-size: 1.1em;
    font-weight: 300;
}
.loginwrap {
    max-width: 500px;
    background-color: white;
    padding-top: 0;
    padding: 39px 30px 40px 30px;
    box-shadow: none;
    width: 100%;
}
img.loginimg {
    width: 324px;
    padding-bottom: 28px;
    display: block;
    margin: 0 auto;
}



/* ---------------------------------------------------------
STYLING FOR LOGIN
   ---------------------------------------------------------*/
.regbg {
    background-color: white;
    width: 100%;
    position: absolute;
    -webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.loginbg {
    min-height: 100%;
    background-attachment: fixed;
    overflow: hidden;
    background-image: url(http://www.slab-bit.com/wp-content/uploads/2017/04/login-bg.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #cccdca;
}
/* --------- Alerts ------------*/
p.login-msg {
    color: red;
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: 162px;
}

/* --------- Sign Up Link ------------*/
.loginadj {
    max-width: 385px;
    width: 100%;
    background-color: white;
    padding-top: 0;
    margin-top: 6%;
    padding: 19px 30px 40px 30px;
    border-radius: 10px;
}

img.loginimg {
    max-width: 324px;
    padding-bottom: 0;
}
a.logoutlink {
    display: inline-block;
    margin-left: 218px;
}
input#phone_number {
    margin-bottom: 20px;
}