@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/
*/
.formcenter{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}
.loginbox{
    max-width: 600px;
    width: 80%;
    margin: 50px auto;
    height: 550px;
    
    background: rgba(255,255,255,0.1);
}
.errormess{
  width:100%;
  height:auto;
}
.logininput{
    border-radius: 0;
    width: 80%;
    color: #000;
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
    margin-bottom: 20px;
}
.sessionbox{
      max-width: 600px;
    width: 80%;
    margin: 50px auto;
    background: rgba(255,255,255,0.8);
    height: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
}


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

    .form-control {
          position: relative;
          font-size: 16px;
          height: auto;
          padding: 10px;
                @include box-sizing(border-box);

                &:focus {
                  z-index: 2;
                }
        }


body {
        /*background: url(background.png) no-repeat center center fixed;
    */-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

html, body, .glass {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.glass::before {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    content: ' ';
    opacity: 0.5;
}

.glass {
    background-color: white;
}

.login-form {
        margin-top: 60px;
}

form[role=login] {
        color: #5d5d5d;
        background: #f2f2f2;
        padding: 26px;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
}
        form[role=login] img {
                display: block;
                margin: 0 auto;
        }
        form[role=login] input,
        form[role=login] button {
                font-size: 18px;
                margin: 16px 0;
        }
        form[role=login] > div {
                text-align: center;
        }

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