:root {
  --topmenu-color: #666666;
  --text-color: black;
  --hilite-color: orange;
  --sidebar-color: #cccccc;
}
body {
      font: 16px Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
      background-color: #e3d5ca;
   }
   h1 {
      text-align: left;
      color: white;
      background-color: var(--topmenu-color);
      font-weight: normal;
      padding: 10px;
      border-radius: 0.2em;
   }
   a {
      color: var(--text-color);
      text-decoration: none;
   }
   a:hover {
      color: var(--text-color);
   }
   .center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
  }
   div.login {
      /*position: absolute;
      top: 50%;
      left: 50%;
      margin-right: -50%;
      transform: translate(-50%, -50%); */
      margin-left: 20px;
      border-radius: 1em;
      color: var(--text-color);
      background-color: white;
      border: 8px solid var(--topmenu-color);
      padding: 10px;
      min-width: 400px;
      max-width: 600px;
    }

    input[type=text] {
     width: 100%;
     padding: 12px 20px;
     margin: 2px 0;
     font-size: 1.1em;
     display: inline-block;
     border: 1px solid var(--text-color);
     border-radius: 4px;
     box-sizing: border-box;
   }

   input[type="password"] {
     width: 100%;
     padding: 12px 20px;
     margin: 2px 0;
     font-size: 1.1em;
     display: inline-block;
     border: 1px solid var(--text-color);
     border-radius: 4px;
     box-sizing: border-box;
   }

   input[type="password"]:focus,
   input[type="text"]:focus {
     border: 1px solid var(--text-color);
  }

   input[type=submit] {
     width: 100%;
     background-color: orange;
     color: white;
     padding: 14px 20px;
     margin: 18px 0;
     font-size: 1.1em;
     border: none;
     border-radius: 0.2em;
     cursor: pointer;
   }
  
   input[type=submit]:hover {
     background-color: brown;
   }
   
   button {
     width: 100%;
     background-color: orange;
     color: white;
     padding: 14px 20px;
     margin: 18px 0;
     font-size: 1.1em;
     border: none;
     border-radius: 0.2em;
     cursor: pointer;
   }

   button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

   button:hover {
     background-color: brown;
   }
 
   button:disabled
   button[disabled] {
    width: 100%;
    background-color: #9e9e9f;
    color: white;
    padding: 14px 20px;
    margin: 18px 0;
    font-size: 1.1em;
    border: none;
    border-radius: 0.2em;
    cursor: not-allowed;
  }

  select {
    width: 100%;
    padding: 12px 20px;
    margin: 2px 0;
    font-size: 1.1em;
    display: inline-block;
    border: 1px solid darkorange;
    border-radius: 4px;
    box-sizing: border-box;
  }
  .fa-eye, .fa-eye-slash {
    font-size: 1.2em;
    transition: color 0.3s;
  }
  .fa-eye:hover, .fa-eye-slash:hover {
    color: #000;
  }
   .grecaptcha-badge { visibility: hidden; }