@CHARSET "UTF-8";
/*
over-ride "Weak" message, show font in dark grey
*/

.progress-bar {
    color: #333;
}
/*
Reference:
http://www.bootstrapzen.com/item/135/simple-login-form-logo/
*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

.form-control {
    position: relative;
    font-size: 14px;
    height: auto;
    padding: 10px;
    @include box-sizing(border-box);
    &:focus {
        z-index: 2;
    }
}

body {
/*    background: url(http://i.imgur.com/GHr12sH.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover; */
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    background-color: #f1f3f6;
}

.btn {
    background-color: white;
    border-color: #e4e5e7;
    border-radius: 3px;
    color: #6a6c6f;
    font-weight: 300;
}

.btn.btn-success {
    background-color: #62cb31;
    border-color: #62cb31;
    color: white;
    font-weight: 800;
}
        
.login-form {
    margin-top: 60px;
    background-color: white;
}

.register-section {
    margin-top: 60px;
    background-color: white;
    padding: 30px;
    .form-control {
        font-size: 14px;
    }
}

form {
    padding: 26px;
}

h3 {
    text-align: center;
}

form[role=login] {
    color: #5d5d5d;
    background: white;
    padding: 26px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.header-img {
    display: block;
    margin: 0 auto;
    margin-bottom: 35px;
}

form[role=login] input,
form[role=login] button {
    font-size: 18px;
    margin-top: 16px; 
}

form[role=login] > div {
    text-align: center;
}

.form-links {
    text-align: center;
    margin-top: 1em;
    margin-bottom: 50px;
}

.form-links a {
    color: #fff;
}

form label.error {
  font-size: 90%;
  color: red;
  margin-top: 2px;
  display: block; 
}

.terms-warning {
    margin-top: 20px;
    margin-bottom: 10px;
}

.space-top-1 {
    margin-top: 10px;
}

.alert-danger {
    margin-top: 10px;
}

#forgot-password {
    margin-top: 10px;
}

#debug-login {
    margin-top: 10px;
}

#debug-login div {
    margin-top: 5px;
}