/*
This file is part of phploginsys.

phploginsys is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

phploginsys is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with phploginsys.  If not, see <http://www.gnu.org/licenses/>.
*/

.login_or_create {
    color: #434343;
    font-weight: bold;
}

.login_or_create a {
    color: #005aae;
    text-decoration: none;
}

.login_or_create a:hover {
    text-decoration: underline;
}

.auth_button {
    display: inline-block;
    padding: 0.5em 1em;
    color: #ffffff !important;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    background: #7b9902; /* Old browsers */

}

.auth_button:hover {
    text-decoration: none !important;
    background: #c1e302; /* Old browsers */
}

#authform {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 320px !important;
}

#authform form {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

#authform h1 {
    display: none;
}

#authform_message {
    margin: 0 0 1em 0;
    color: #bd3100;
    font-size: 1em;
}

#authform_user, #authform_pass, #authform_submit {
    display: block;
    position: relative;
    text-align: left;
    vertical-align: bottom;
    margin-bottom: 25px;
}

#authform_user input, #authform_pass input, #authform_submit input {
    width: 100%;
    box-sizing: border-box;
}

#authform_user label, #authform_pass label {
    font-size: 1em;
    margin-bottom: 5px;
    color: #989898;
    display: block;
}

#authform_user input, #authform_pass input {
    display: block;
    width: 100%;
    margin: 0;
    border: 1px solid #d5e6e9;
    font-size: 1.1em;
    text-align: left;
    padding: 5px 10px;
}

#authform_submit {
    text-align: center;
}

#authform_submit input {
    display: inline-block;
    border: 0;
    font-family: inherit;
    font-size: 1em;
    cursor: pointer;
}

#authform_submit input[type="submit"]{
    text-align: center;
}