/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: solid 1px #383838;
    border-right-width: 0;
    border-left: 0;
    -webkit-text-fill-color: #383838;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

.input-login {
    padding: 10px;
    margin-bottom: 10px;
    border: solid 1px #383838;
    border-right-width: 0;
    border-left: 0;
    -webkit-text-fill-color: #383838;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

input {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
}

body {
    background: #009fe3;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a, .button-login {
    text-decoration: none;
    font-weight: 600;
    background-color: #cdff00;
    color: #009fe3;
    border: 2px solid #cdff00;
}

a:hover {
    text-decoration: none;
    background-color: white;
    border: 2px solid #009fe3;
}

.button-login:hover {
	background-color: #e7ff85;
	border: 2px solid #e7ff85;
}

input {
    margin-top: 0.2em;
}

#navigation li {
    float: left;
    margin-right: 4em;
}

nav a {
    margin-right: 5px;
}

nav a:after {
    content: "|";
    padding-left: 5px;
}

nav a:last-child:after {
    content: "";
}

input {
    margin-top: 0.2em;
}

#login_form {
    margin-top: 3em;
}

#login_fieldset {
    display: block;
    position: relative;
    width: 100%;
    background: #ffffff;
    text-align: right;
    margin: 0;
    border: none;
    padding: 15px 10px 0 10px;
    color: #383838;
    box-shadow: none;
    min-width: 300px;
    min-height: 150px;
}

#username_field, #password_field, #totp_code_field {
    margin-left: 15px;
    margin-right: 15px;
}

#message_logout_ok {
    margin-top: 2em;
    text-transform: uppercase;
    font-weight: 300;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    justify-content: center;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

h1 {
   font-weight: 100;
   text-transform: uppercase;
   letter-spacing: 0.2em;
}
 
h2 {
   font-weight: 300;
   text-transform: uppercase;
}

label {
    font-weight: 100;
    text-transform: uppercase;
    margin-right: 15px;
}

.button-login {
    display: block;
    transform: translateY(75%);
    cursor: pointer;
    width: calc(100% + 20px);
    margin: 0 10px 0 -10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hidden {
    visibility: hidden;
    position: absolute;
}

.loading_spinner {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #cdff00;
    --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}
