.account_button, .logout_button {
    border: solid 1px transparent;
    border-radius: 4px;
    background:
        linear-gradient(to right bottom, rgba(255,120,99,1), rgba(168,5,49,1))
            border-box;
    font: 8px, sans-serif;
    text-transform: uppercase;
    color: #d7d7d7;
    float: right;
    cursor: pointer;
    position: absolute;
    top: 1vh;
    right: 1vh;
    z-index: 40;
}

.account_button:hover {
    border: solid 1px rgba(118,0,50,1);
    color: #ffffff;
    background:
        linear-gradient(to right bottom, rgba(205,90,69,1), rgba(118,0,50,1))
            border-box;
    z-index: 202;
}

.account_layer {
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    position: absolute;
    display: none;
}

.login_box {
    border-radius: 10px;
    background-color: rgba(255,255,255,0.9);
    border: 1px solid #dddddd;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20vh;
    z-index: 20;
}

.login_box_caption {
    text-align: center;
    color: rgba(205,90,69,1);
    text-transform: uppercase;
    padding: 8px;
    font-weight: bold;
    border-bottom: 1px solid #dddddd;
    margin-left: 10px;
    margin-right: 10px;
}

.login_footer {
    text-align: center;
    padding: 8px;
    border-top: 1px solid #dddddd;
    margin-left: 10px;
    margin-right: 10px;
}

.cancel_button {
    border: solid 1px #aaaaaa;
    border-radius: 6px;
    background:
        linear-gradient(to right bottom, rgba(240,240,240,1), rgba(180,180,180,1))
            border-box;
    font-size: 16px;
    font-family: sans-serif;
    text-transform: uppercase;
    color: #888888;
    padding: 4px;
    padding-left: 16px;
    padding-right: 16px;

    cursor: pointer;
}

.cancel_button:hover {
    border: solid 1px rgba(118,0,50,1);
    color: #ffffff;
    background:
        linear-gradient(to right bottom, rgba(205,90,69,1), rgba(118,0,50,1))
            border-box;
    z-index: 202;
}

.login_button {
    border: solid 1px #aaaaaa;
    border-radius: 6px;
    background:
        linear-gradient(to right bottom, rgba(255,120,99,1), rgba(168,5,49,1))
            border-box;
    font-size: 16px;
    font-family: sans-serif;
    text-transform: uppercase;
    color: #eeeeee;
    padding: 4px;
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
    margin-left: 10px;
}

.login_button:hover {
    border: solid 1px rgba(118,0,50,1);
    color: #ffffff;
    background:
        linear-gradient(to right bottom, rgba(205,90,69,1), rgba(118,0,50,1))
            border-box;
    z-index: 202;
}

.login_content {
    margin: 10px;
}

.form_caption {
    text-transform: uppercase;
    color: #aaaaaa;
}

.group        {
    position:relative;
    margin-bottom:10px;
    margin-top:30px;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 10px;
}
input         {
    font-size:18px;
    padding-bottom: 5px;
    padding-top: 5px;
    display:block;
    border:none;
    border-bottom:1px solid #757575;
    width: 100%;
}
input:focus     { outline:none; }

/* LABEL ======================================= */
label          {
    color:#999;
    font-size:18px;
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    text-transform: uppercase;
    left:10px;
    top:15px;
    transition:0.2s ease all;
    -moz-transition:0.2s ease all;
    -webkit-transition:0.2s ease all;
}

/* active state */
input:focus ~ label, input:valid ~ label    {
    top:-20px;
    font-size:14px;
    color:rgba(205,90,69,1);
}

/* BOTTOM BARS ================================= */
.bar  { position:relative; display:block; width:100%; }
.bar:before, .bar:after   {
    content:'';
    height:2px;
    width:0;
    bottom:0px;
    position:absolute;
    background:rgba(205,90,69,1);
    transition:0.2s ease all;
    -moz-transition:0.2s ease all;
    -webkit-transition:0.2s ease all;
}
.bar:before {
    left:50%;
}
.bar:after {
    right:50%;
}

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after {
    width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
    position:absolute;
    height:60%;
    width:100px;
    top:25%;
    left:0;
    pointer-events:none;
    opacity:0.5;
}

/* active state */
input:focus ~ .highlight {
    -webkit-animation:inputHighlighter 0.3s ease;
    -moz-animation:inputHighlighter 0.3s ease;
    animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from { background:rgba(205,90,69,1); }
    to  { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
    from { background:rgba(205,90,69,1); }
    to  { width:0; background:transparent; }
}
@keyframes inputHighlighter {
    from { background:rgba(205,90,69,1); }
    to  { width:0; background:transparent; }
}

.css-box-shadow {
    /*start ------------*/
    width: [object Object]px;
    height: [object Object]px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.5)  ;
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.5)  ;
    -moz-box-shadow: 0 0 35px rgba(0, 0, 0, 0.5)  ;
}

p.text {
    color: #555555;
    font-size: 16px;
}

.login_error {
    background-color: rgba(205,90,69,0.2);
    border: 1px solid rgba(205,90,69,1);
    border-radius: 5px;
    color: rgba(205,90,69,1);
    padding: 8px;
}

#auto_logout {
    padding: 6px;
    padding-right: 100px;
    padding-left: 10px;
    font-size: 80%;
    color: #ffffff;
    background: rgb(220,0,0);
    background: -moz-linear-gradient(90deg, rgba(220,0,0,1) 0%, rgba(255,0,0,1) 14%, rgba(255,0,0,1) 20%, rgba(102,0,0,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(220,0,0,1) 0%, rgba(255,0,0,1) 14%, rgba(255,0,0,1) 20%, rgba(102,0,0,1) 100%);
    background: linear-gradient(90deg, rgba(220,0,0,1) 0%, rgba(255,0,0,1) 14%, rgba(255,0,0,1) 20%, rgba(102,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dc0000",endColorstr="#660000",GradientType=1);
    border: 2px solid #660000;
}
