@charset "UTF-8";

/*!
Copyright (c) 2014-2018 ALR:Tech. All rights reserved.
*/

input, button {
    font-size: 1.6em;
    margin-top: 0.5em;
    border-radius: 0.3em;
    border: 0;
    -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.06);
    text-align: center;
    color: #bbbbbb;
    outline: 0 !important;
}

input[type=text], input[type=password] {
    padding: 0 0.5em;
    width: 100%;
    text-shadow: 1px 1px 1px black;
    background: rgba(0, 0, 0, 0.16);
    height: 2em;
}

input[type=text]:focus, input[type=password]:focus {
    color: white;
    background: rgba(0, 0, 0, 0.1);
}

button {
    margin: 0 auto;
    width: 40%;
    display: inline-block;
    padding: 0.5em;
    background-color: #283032;
    font-weight: 600;
    cursor:pointer;
}

button:hover, button:active {
    color: #dddddd;
    background-color: #384042;
}

button * {
    outline: none !important;
}





#login-container {
    position: relative;
    margin: 1em auto;
    width: 28em;
    padding: 0 2em;
    text-align: center;
}

#login-container input {
    background: #161820;
}

#login-container button {
    z-index: 10;
}

#message {
    font-size: 1.4em;
    font-weight: bold;
    margin: 2em 0;
}

.message-ok {
    color: darkgreen;
}

.message-warning {
    color: darkred;
}