
/* Haupt CSS für juFORUM Website.
 *
 * Elemente sind grob sortiert nach Position auf der Website von oben
 * nach unten.
 *
 * Am Ende stehen Änderungen für kleine Bildschirme, damit sie
 * vorherige Settings überschreiben können.
 *
 * Einrückung: 4 Leerzeichen!
 *
 * Breite linker Spalte: 21em, 17em unter 1100px screen
 * Breite rechter Spalte: 17em
 */

@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Italic.ttf') format('truetype');
    font-style: italic;
}

@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: bold;
}

body {
    color: black;
    background-color: white;
    margin: 0;
    font-family: OpenSans,Verdana,sans-serif;
    font-size: 100%;
}

#page {
    font-size: 14px;
}


/********************************************************************/
/* Header mit Logo und Banner */

#header {
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 55%,rgba(234,91,12,1) 55%,rgba(234,91,12,1) 100%);
}

#header img.logo {
    position: relative;
    left: 1.1em;
    height: 109px;
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 2;
}

#banner {
    max-width: 1300px;
    margin: 0 auto;
    height: 129px;
}

#banner:after{
    content: '';
    background: url('images/header.png') calc(23em - 243px) 0 no-repeat;
    width: 100%;
    height: 129px;
    display: block;
    position: absolute;
    top: 0;
    max-width: 1450px;
}

/* Hauptmenü */
#menu {
    background-color: white;
    position: relative;
    text-align: center;
    font-size: 120%;
    margin: 0;
    border-top: 1px solid #bd1d1d;
    border-bottom: 1px solid #ea5b0c;
    transition: height .2s;
    z-index: 7;
}

/* Toggle für Overlay-Menu und zugehörige Checkbox ausblenden (wird
   nur auf kleinen Bildschirmen benötigt, s.u.) */
#menutogglehelper {
    position: absolute;
    left: -9999px;
}
#menutoggle {
    display: none;
}

#menu ul {
    -webkit-padding-start: 0 !important;
    margin: 0;
}

#menu li {
    color: #000000;
    display: inline-block;
    font-weight: bold;
    padding-bottom: 0.7em;
    padding-top: 0.5em;
    position: relative;
    margin: 0;
}
#menu a {
    color: #000000;
    margin-left: 0.4em;
    padding-left: 0.4em;
    padding-right: 0.4em;
}
#menu a:hover, #menu .menuakt a {
    background: none;
    color: #ea5b0c;
}

/* sticky menu */
#menu.float {
    position: fixed;
    width: 100%;
    top: 0;
    height: 3em;
    border: none;
}
#menu:before {
    content:'';
    opacity:0;
    transition:opacity .5s;
}
#menu.float:before {
    /* Achtung: Die Höhe wird durch stickymenu.js dynamisch angepasst */
    position: fixed;
    width: 100%;
    background-color: #ea5b0c;
    background: linear-gradient(to bottom, #ea5b0c 0%, #d53a17 100%) !important;
    top: 0;
    height: 3em;
    opacity: 1;
    left: 0;
}
#menu.float a {
    color:white !important;
}
#menu.float a:hover, #menu.float .menuakt a {
    text-shadow:rgba(255,255,255,.5) 0.1em 0.1em 0.2em;
}
#menu.float li {
    padding-top:1em;
}

/* Login Feld */
#menubarcontainer {
    max-width: 1300px;
    margin: 0 auto;
}
#menubar {
    margin-left: 23em;
    padding: 0;
    background: #ea5b0c;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 5;
    transition: color 0.25s ease;
}
/* Altes Login Formular direkt in der menubar, verloren mit Typo3 v11
#menubar input[type=text], #menubar input[type=email], #menubar input[type=password] {
    border: 1px solid transparent;
    border-bottom: 1px solid white;
    background: transparent;
    color: white;
    margin: 0em 0em;
    outline: 0;
}
#menubar input[type=text]:focus, #menubar input[type=email]:focus, #menubar input[type=password]:focus {
  border: 1px solid white !important;
  background: rgba(255,255,255,0.1);
}*/
.login-btn {
    background: transparent;
    border: 1px solid white;
    color: white !important;
    padding: 1px 5px;
    font-weight: bold;
    border-radius: 5px;
    margin: 3px 5px;
}

#header #loginbox, #header #loginbox_empty {
    text-align: right;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
}
#header #loginbox div {
    display: inline;
}
#loginbox input[type=text], #loginbox input[type=email], #loginbox input[type=password] {
    width:10em;
}

/*unsichtbare Placeholders (auf großen Bildschirmen werden stattdessen Labels gezeigt)*/
#loginbox ::placeholder, #loginbox_empty ::placeholder {
  color:transparent;
}



/*****************************************************/
/*  Login-Seite styling für fe-login seit Typo3 v11  */
/*  KP, wie man da das Template austauscht also Brute-force CSS  */
/*  Daniel - 2025-06   */

div.frame-type-felogin_login {
}
div.frame-type-felogin_login fieldset > div {
  display: flex;
  width: 50%;
  margin-left: 15%;
  margin-top: 1em;
  justify-content: end;
  align-items: center;
}
div.frame-type-felogin_login fieldset > div label {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
}
div.frame-type-felogin_login fieldset > div label input {
  width: 50%;
  margin-left: 1em;
}
div.frame-type-felogin_login fieldset > div > input {
  width: 50%;
  box-sizing: content-box;
}

/*  TYPO3 13 setzt das <input> neben das <label> statt hinein, wodurch die Regeln
    darueber nicht mehr greifen. Der Geschwister-Selektor passt nur auf die neue
    Struktur, damit dieselbe Datei auf v12 und v13 funktioniert.  */
div.frame-type-felogin_login fieldset > div > label + input {
  flex: 0 0 auto;
  width: 50%;
  margin-left: 1em;
  box-sizing: content-box;
}

@media (max-width: 820px) {
  div.frame-type-felogin_login fieldset > div {
    width: 75%;
    margin: auto;
    margin-top: 1em;
    flex-direction: column;
  }
  div.frame-type-felogin_login fieldset > div label {
    flex-direction: column;
  }
  div.frame-type-felogin_login fieldset > div label input {
    width: 75%;
    margin-left: 0;
  }
  div.frame-type-felogin_login fieldset > div > input {
    width: 75%;
  }
  div.frame-type-felogin_login fieldset > div > label + input {
    width: 75%;
    margin-left: 0;
  }
}




/********************************************************************/
/* Middle section of page with three columns */

#wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

/********************************************************************/
/* Left column */

/* Linkes Menü */
#submenu {
    float: left;
    width: 21em;
    margin: 0; padding: 0;
    margin-top: 2em; margin-left: 1em; margin-bottom: 1em;
    background-color: transparent;
    color: #777;
    border-top: 0px solid #aaaaaa;
    border-right: 0px solid #aaaaaa;
    transition: color 0.25s ease;
}

#submenu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#submenu ul {
    padding: 0;
    margin: 0;
}

#submenu a {
    font-weight: bold;
    display: block;
    padding-top: 0.9em;
    padding-bottom: 0.2em;
    color: #777;
    transition: color 0.25s ease;
}

#submenu a:hover, #submenu li.menuakt > a {
    font-weight: bold;
    color: #000;
}

#submenu li a {
    padding-left: 0.5em;
    border-left:  0px solid #1f497d;
    border-bottom: 1px solid #ccc;
    transition: border-bottom .25s ease;
    border-bottom-left-radius: 10px;
}

#submenu  li  a:hover {
  border-bottom:1px solid #999;
}

#submenu a:before {
    content: url('images/unterpunkt1.png');
    margin-right: 5px;
}
#submenu ul a:before {
    content: url('images/unterpunkt2.png');
    margin-right: 5px;
}
#submenu ul ul a:before {
    content: url('images/unterpunkt3.png');
    margin-right: 5px;
}

#submenu li ul li a {
    padding-left: 0.5em;
    margin-left: 2em;
    border-left: none;
}
#submenu li ul li ul li a {
    padding-left: 0.5em;
    margin-left: 4em;
    border-left: none;
}
#submenu li ul li ul li ul li a {
    padding-left: 0.5em;
    margin-left: 6em;
    border-left: none;
}

/* sticky menu */
#submenu.float {
    position: fixed;
    top: 2em;
}
#submenu.largefloat {
    position: fixed;
    bottom: 2em;
}

/* Kalender */
#cal-left {
    float: left;
    width: 20em;
    margin: 0; padding: 0;
    position: relative; left: 1em; top: 2em;
}
.icalfeed {
    display:block;
    padding: 1em;
    color: #ea5b0c;
}
a.cal-all {
    font-weight: bold;
    color: #ea5b0c;
}
.cal-item {
    margin-bottom:0.5em;
    padding: 1em;
    padding-bottom: 1.5em;
    font-size: 100%;
    display: block;
    border-bottom: 1px solid #ea5b0c;
}

/********************************************************************/
/* Content column */

#content {
    line-height: 1.5;
    margin-left: 23em;
    margin-right: 19em;
    max-width: 700px;
    min-width: 300px;
    min-height: 600px;
    min-height: calc(100vh - 232px);
    position: relative;
    z-index: 1;
    padding: 1em 1em 1em 1em;
    border-left: 2px solid #ea5b0c;
}

#content:after {
    /* Hintergrund bild mit Transparenz */
    background: url("images/background.png") no-repeat scroll center top;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: " ";
    opacity: 0.125;
}

/********************************************************************/
/* Content elements */

h1.csc-firstHeader {
    font-size: 210%;
}

h1 {
    font-size: 150%;
    padding-top: 0.2em;
}

p.bodytext {
    text-align: justify;
}

p.text-center, h1.text-center, h2.text-center, h3.text-center {
    text-align: center;
}

hr {
    width: 75%;
    border: none;
    height: 2px;
    background-color: #ea5b0c;
    background-image: none;
}

ul.csc-uploads span.csc-uploads-fileName {
    text-decoration:initial !important;
}

a, a:link, a:visited, a:active {
    text-decoration: none;
    color: #ea5b0c;
}
#content a:hover, #rightcolumn a:hover {
    text-decoration: underline;
    color: #ea5b0c;
}

a img {
    border: none;
}

/* Bilder auf kleinen Bildschirmen herunterskalieren */
.ce-gallery img {
    max-width: 100%;
    height: auto;
}

#content #loginbox {
    line-height: 2em;
}
#content #loginbox label {
    display: inline-block;
    width: 8em;
}
#loginbox a.pwvergessen {
    color: white;
}

.contenttable {
    width: 100%;
    border-collapse: collapse;
}
.contenttable td {
    border: 1px solid #CCC;
    padding: 0.5em;
    vertical-align: top
}


/********************************************************************/
/* Right Column */

#rightcolumn {
    float: right; width: 17em;
    margin: 0; padding: 0;
    padding-right: 1em;
    color: #333333;
}

/* Facebook und Instagram Links */
#fblink, #instagramlink {
  font-weight:bold;
  text-align:center;
  border-radius: 5px;
  padding:1.2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

#fblink {
    border: 1px solid #425f9b;
}
#instagramlink {
    border: 1px solid #F77737;
}

#fblink a, #fblink a:hover,
#instagramlink a, #instagramlink a:hover {
  color: inherit;
  text-decoration: none;
}
#fblink img, #instagramlink img {
  height: 1.5em;
  float: left;
}

#partner {
    margin-top: 1.5em;
}

/* Lokale Ansprechpartner-Suche */
#ansprechpartner {
    margin-top: 2em;
}
#ansprechpartner form{
    margin-top: 0.5em;
}
#ansprechpartner img{
    float: left;
    width: 60px;
    margin-right: 0.5em;
    margin-top: 0.2em;
}
#ansprechpartner p{
    margin: 0.2em;
}
#ansprechpartner input[type=number]::-webkit-inner-spin-button,
#ansprechpartner input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#ansprechpartner input[type=number] {
    -moz-appearance: textfield;
}


/********************************************************************/
/* Quicklinks */

@keyframes rotate {
    100% {
        transform: rotate(-180deg);
    }
}

@keyframes unrotate {
    100% {
        transform: rotate(180deg);
    }
}

@keyframes hide {
    100% {
        opacity:0;
    }
}

@keyframes show {
    100% {
        opacity:1;
    }
}

#quicklinks {
  direction:rtl;
  font-family:Verdana,arial,sans-serif;
  font-size:12px;
}
#quicklinks_pageload_image {
  z-index:4;
  position:fixed;
  bottom:1em;
  left:1em;
  min-height:30px;
  min-width:30px;
  animation-duration: 0.01s;
  animation-name: hide;
  animation-delay: 1.22s;
  animation-fill-mode: forwards;
  background:url("images/zahnrad.png") no-repeat bottom right;
}
#quicklinks_outer_image {
  z-index:3;
  position:fixed;
  bottom:1em;
  left:1em;
  min-height:30px;
  min-width:30px;
  opacity:0;
  animation-duration: 0.01s;
  animation-name: show;
  animation-delay: 1.22s;
  animation-fill-mode: forwards;
}
#quicklinks_image {
  z-index:3;
  position:fixed;
  bottom:1em;
  left:1em;
  min-height:30px;
  min-width:30px;
  animation-duration: 0.6s;
  animation-name: unrotate;
  animation-timing-function: linear;
  animation-delay: 0.6s;
  background:url("images/zahnrad.png") no-repeat bottom right;
}
#quicklinks:hover #quicklinks_image {
  animation: rotate 0.4s forwards;
}
#quicklinks_content {
  z-index:2;
  box-sizing:border-box;
  overflow:hidden;
  position:fixed;
  bottom:1em;
  left:1em;
  max-height:30px;
  max-width:30px;
  padding:30px 8px 0 8px;
  border-radius: 25px;
  background: #FFFFFF;
  opacity:0.8;
  transition:max-height 1s,max-width cubic-bezier(0,0,1,0) 1s;
}
#quicklinks_content ul {
  list-style-type:none;
}
#quicklinks:hover #quicklinks_content {
  max-height:500px;
  max-width:250px;
  transition:max-width 0.6s,max-height cubic-bezier(0,0,1,0) 0.6s;
}
#quicklinks ul {
  margin-bottom:40px;
  margin-top:5px;
  padding-right:0;
}
#quicklinks li {
  margin-bottom:5px;
}
#quicklinks a {
  direction:ltr;
}
#quicklinks a:hover {
  text-decoration:underline;
}


/********************************************************************/
/* JVT? */

.head {
    color:#666666;
}
.head a {
    color: #666666
}

.nav {
    font-weight: bold;
    color: #FFFFFF;
}
.nav a {
    color: #FFFFFF;
}

input, button, .button
{
    font-style: normal;
    font-weight: normal;
    font-family: arial;
    border-width: 1px;
    border-color: #333;
    padding: 2px;
    background-color: #FFFFFF;
}

select {
    font-style: normal;
    font-weight: normal;
    font-family: arial;
    border-width: 1px;
    border-color: #333;
    padding: 2px;
}

textarea {
    border-width: 1px;
    padding: 2px;
    border-color: #333;
}

.tx-irfaq-pi1 ul.tx-irfaq-questions-list { margin-bottom:75px; }
.tx-irfaq-pi1 ul li a { color: #000; text-decoration: none; }
.tx-irfaq-pi1 ul li a:hover { color: #000; text-decoration: underline; }
.tx-irfaq-pi1 .tx-irfaq-answer { margin-bottom: 10px; }
.tx-irfaq-pi1 .tx-irfaq-answer h4 p.bodytext { margin: 0px; display: inline; font-weight: bold; }
.tx-irfaq-pi1 dt { font-size:16px; font-weight: bold; margin: 0px; display: block; }
.tx-irfaq-pi1 dd { margin-left: 0px; }
.tx-irfaq-pi1 dd p { margin-top: 0px; }
.tx-irfaq-pi1 .additional-info {border-top: 2px solid #e6e6e6; margin-bottom: 10px; display:none; }


#content input:focus {
    background: #ffeddb;
}

table.fragen {
    border: 1px solid #0f0f0f;
}


.feed {
    margin-left: 3px;
    padding: 0 0 0 19px;
    background: url("icons/feed.png") no-repeat 0 50%;
}

#am tr:hover {
    background:#F3EBC8 none repeat scroll 0 0;
}

.mitgliedtabelle tbody {
    vertical-align: top;
}

pre {
    background-color: #eeeeee;
    border: solid 1px #aaa;
    padding: .5em;
    font-family: "Lucida Console", "Courier New", Courier, monospace;
    margin: 0;
}

pre p.bodytext {
    padding: 0px;
    margin: 0px;
}

/*Mein Profil:*/
.nested li a img {/* breite Adresskarte*/
    width: 390px !important;
}

/*nutzeransicht */
#member_detail h3{
    margin-top: 2em;
}

#member_detail dt{
    font-weight: bold;
    margin-top: 1em;
}
/*---Mein Profil:*/

body {
    overflow-x:hidden;
}


/********************************************************************/
/* Footer */

/* Verstecktes Feld */
#honig {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

#footer {
    clear: both;
    text-align: center;
    padding: 0.5em 0;
    color: #FFFFFF;
    background-color: #ea5b0c;
    background: linear-gradient(to bottom, #ea5b0c 0%, #d53a17 100%) !important;
    position: relative;
    z-index: 2;
}
#footer a {
    text-decoration: none;
    font-weight: bold;
    color: #FFFFFF;
}

#meta {
    margin: 0;
    padding: 0;
}
#meta li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
}


/********************************************************************/
/* Anpassungen für kleine(re) Bildschirme. Sollten am Ende der Datei
   stehen, um obige Angaben überschreiben zu können. */

@media (max-width: 1100px) {
    /* linke Spalte kleiner machen */
    #submenu, #cal-left {
        width: 17em;
    }
    #content {
        margin-left: 20em;
    }
    #menubar {
        margin-left: 20em;
    }
    #banner:after{
        background-position: calc(20em - 242px) 0;
    }

    /* rechte Spalte ausblenden */
    #rightcolumn {
        display: none
    }
    #content {
        max-width: 600px;
        margin-right: 0;
    }
}

@media (max-width: 820px) {
    /* Login-Bereich kompakter gestalten: Placeholder statt Label */
    #loginbox label, #loginbox_empty label {
        display: none;
    }
    #loginbox ::placeholder, #loginbox_empty ::placeholder {
        color: rgba(255,255,255,.5);
        font-weight: bold;
        opacity: 1;
    }
}

/* Mobile Design */
@media (max-width: 650px) {
    /* Header kleiner */
    #banner {
        height: 80px;
    }
    #banner img.logo {
        left: 7px;
        margin-top: 5px;
        margin-bottom: 5px;
        height: 70px;
    }
    #banner:after{
        background-position: 0 0;
        background-size: auto 80px;
    }
    /* linke Spalte und Hauptmenü ausblenden, bei Bedarf bildschirmfüllend anzeigen */
    #content {
        margin-right: 0em;
        margin-left: 0em;
        border-left: none;
        min-width: 0;
    }
    #menu {
        position: absolute;
        top: 0;
        right: 0;
        border: 0;
        background: none;
    }
    #menubar {
        margin-left: 0;
    }
    #cal-left {
        display: none;
    }
    #menu ul, #submenu {
        background:initial;
        z-index:10;
        display:none;
    }
    #menutoggle {
        display: block;
        height: 80px;
        width: 80px;
        padding: 0;
        font-weight: bold;
    }
    #menutoggle:hover{
        color: #d53a17;
        cursor: pointer;
    }
    #menutoggle span.burger
    {
        position: absolute;
        top: 28px;
        right: 28px;
    }
    #menutoggle span.burger span
    {
      display: block;
      width: 33px;
      height: 4px;
      margin-bottom: 5px;
      position: relative;

      background: white;
      border-radius: 3px;

      z-index: 1;

      transform-origin: 50% 50%;

      transition: transform 0.4s cubic-bezier(0.77,0.2,0.05,1.0),
                  background 0.2s cubic-bezier(0.77,0.2,0.05,1.0),
                  opacity 0.2s ease;
    }
    /* Menu Burger: X-Style */
    #menutogglehelper:checked~div #menutoggle span.burger span
    {
        opacity: 0;
        background: grey;
        transform: rotate(0deg) scale(0.5, 0.1);
    }
    #menutogglehelper:checked~div #menutoggle span.burger span:first-child
    {
        opacity: 1;
        transform: translate(0, 9px) rotate(45deg);
    }
    #menutogglehelper:checked~div #menutoggle span.burger span:last-child
    {
        opacity: 1;
        transform: translate(0, -9px) rotate(-45deg);
    }
    #menutoggle span.altText
    {
        display: none;
    }

    #menu.float {
    }

    /* bildschirmfüllendes Menü */
    #menutogglehelper:checked~div #menu {
        left: 0;
    }
    #menutogglehelper:checked~div #menutoggle {
        /* weißer Hintergrund */
        color:transparent;
        display:block;
        position:fixed;
        top:0;
        bottom:0;
        left:0;
        right:0;
        width: auto;
        height: auto;
        background:rgba(255,255,255,1);
        z-index:9;
        border:none;
    }
    #menutogglehelper:checked~div #menutoggle:before{
        /* Hintergrund bild mit Transparenz */
        background: url("images/background.png") no-repeat scroll center top;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: -1;
        content: " ";
        opacity: 0.1;
    }
    #menutogglehelper:checked~div #menu ul, #menutogglehelper:checked~div #submenu {
        display:initial;
        background:initial;
        margin-top:4em;
    }
    #menu ul{
        box-sizing: border-box;
        width:47%;
        text-align:right !important;
        position:absolute;
        top:1em;
        left:0;
        border:none;
    }
    #menu li{
        display:block;
    }
    #submenu {
        width:47%;
        margin-left:50%;
        padding-left:3%;
        position:absolute;
        top:1em;
        border-left:1px solid #d53a17;
        bottom:initial;
    }
    #menutogglehelper:checked~div #submenu {
        margin-top: 5em !important;
    }
    #submenu li a { /*specificy wars!*/
        border:none;
        color:black;
        font-weight:normal;
        padding-left:0;
        font-size:120%;
        display:initial;
    }
    #submenu li {
        margin:.7em 0;
    }
    #submenu li.menuakt > a, #submenu a:hover {
        font-weight:normal;
        color:#d53a17;
        border:none !important;
    }
    #submenu li a:before {
        content:'';
        display:none;
    }


    /* Login-Bereich hoeher und auf voller Breite fuer einfachere Mobile-Bedienung */
    #header #loginbox {
        padding-right: 5%;
    }
    #loginbox input,
    #loginbox button,
    #loginbox .button,
    #loginbox input[type=text],
    #loginbox input[type=email],
    #loginbox input[type=password] {
        /* Change Style also for on-page-login */
        font-size: inherit;
        line-height: 2em;
        padding: 0.1em 0.5em;
        margin: 0.2em 0.2em;
        min-width: 8em;
    }
    #header #loginbox input,
    #header #loginbox button,
    #header #loginbox .button,
    #header #loginbox input[type=text],
    #header #loginbox input[type=email],
    #header #loginbox input[type=password] {
        /* volle Breite für Login auf Mobil */
        margin: 0;
        box-sizing: border-box;
        min-width: 0;
        width: 35%;
    }
    /* smaller height for logged-in users */
    #header #loginbox.logout {
        font-size: 12px;
    }
    #header #loginbox.logout input,
    #header #loginbox.logout button,
    #header #loginbox.logout .button,
    #header #loginbox.logout input[type=text],
    #header #loginbox.logout input[type=email],
    #header #loginbox.logout input[type=password] {
        line-height: 1.5em;
    }
    #header #loginbox input[type="submit"],
    #header #loginbox button,
    #header #loginbox .button {
        padding: 0.1em auto;
        width: 20%;
    }
}
