@charset "UTF-8";
/* Contains the styling for the collapsible login box */

.loginBox {
    font-size: 12px;
    position: absolute;
    right: 10px;
    width: 200px;
    z-index: 100;
    background-color: #FEFEF6;
    color: #585858;
}

/* Login Box Trigger */

.loginBox .trigger {
    font-weight: bold;
    height: 20px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

.loginBox.expanded .trigger {
    padding-top: 0;
}

.loginBox .trigger .label:before {
    content: 'Einloggen';
}

.loginBox.expanded .trigger .label:before {
    content: 'Schließen';
}

.loginBox .trigger .icon {
    color: #808080;
    font-size: xx-small;
}

.loginBox .trigger .icon:before {
    content: '\25BC';
}

.loginBox.expanded .trigger .icon:before {
    content: '\25B2';
}

/* Login Form */

.loginBox .loginForm {
    display: none;
    margin: 10px 10px 0 10px;
}

.loginBox .loginForm .input {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
}

.loginBox .loginForm div {
    margin-top: 5px;
    margin-bottom: 5px;
}

.loginBox .loginForm hr {
    margin-top: 20px;
}

.loginBox .loginForm .prominentButton {
    width: 100%;
    margin-bottom: 0;
}

.loginBox .loginForm label {
    font-weight: bold;
}

/* label that comes after a checkbox */
.loginBox .loginForm input[type=checkbox] + label {
    font-weight: normal;
}

