* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    z-index: 3;
}

::-webkit-input-placeholder {
    color: #999999;
}

:-moz-placeholder {
    color: #999999;
}

html {
    height: 100%;
}

body {
    font-family: 'Noto Sans', Arial, sans-serif;
    color: #666666;
}

label {
    cursor: pointer;
    margin-bottom: 5px;
    display: block;
}

p {
    font-size: 13px;
}

a {
    color: #009879;
    font-size: 12px;
}

a:hover {
    text-decoration: none;
}

input {
    outline: 0;
}

.caps-indicator-capson {
    background-size: 18px 18px !important;
    background: white url(/img/capslock.png) no-repeat scroll 5px center !important;
}

input[type="email"] {
    background: url(/img/login-email.png) no-repeat scroll;
}

input[type="text"] {
    background: url(/img/login-user.png) no-repeat scroll;
}

input[type="password"] {
    background: url(/img/login-key.png) no-repeat scroll;
}

input[type="email"], input[type="text"], input[type="password"] {
    border: 1px solid #cdcdcd;
    background-position: 5px center;
    background-size: 20px 20px;
    background-color: white;
    width: 100%;
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 13px;
    color: grey;
    position: relative;
    height: 36px;
    padding-left: 30px;
    margin-bottom: 10px;
}

button {
    background-color: #009879;
    background-image: linear-gradient(to bottom, #009879, #00886d);
    font-family: Arial, sans-serif;
    color: #ffffff;
    font-size: 12px;
    padding: 8px;
    border: 0;
    cursor: pointer;
}

button:hover {
    opacity: 0.85;
}

#kc-logo {
    width: 100%;
    margin-bottom: 10px;
}

#kc-box {
    margin-top: 50px;
    padding: 10px;
    background-color: rgb(255, 255, 255, 0.95);
    width: 330px;
    position: relative;
    left: 50%;
    margin-left: -165px;
    cursor: default;
    user-select: none;
    z-index: 3;
    border-bottom: 5px solid #009879;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    display: none;
}

#options-flex {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

#options-flex > div {
    flex: 50%;
}

#options-flex > div:last-child {
    text-align: right;
}

#error-message {
    color: white;
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 330px;
    position: relative;
    left: 50%;
    margin-left: -165px;
    user-select: none;
    cursor: pointer;
    display: none;
}

#error-message-head {
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    border-bottom: 1px solid white;
    padding-bottom: 4px;
}

#error-message-text {
    font-size: 14px;
    margin-top: 8px;
}

/* Jahreszeitenabhängiger Hintergrund Start */
.spring::before {
    background: url(/img/background/spring.jpg) center center no-repeat fixed;
    background-size: cover;
}

.summer::before {
    background: url(/img/background/summer.jpg) center center no-repeat fixed;
    background-size: cover;
}

.autumn::before {
    background: url(/img/background/autumn.jpg) center center no-repeat fixed;
    background-size: cover;
}

.winter::before {
    background: url(/img/background/winter.jpg) center center no-repeat fixed;
    background-size: cover;
}

body::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

body::after {
    content: '';
    backdrop-filter: saturate(30%) blur(15px) grayscale(70%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
/* Jahreszeitenabhängiger Hintergrund Ende */