/* **** Allgemeine Settings **** */
:root{ 
  font-family: 'Segoe UI', SegoeUI, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  }
  
  /* **** Hintergrund & divs zentrieren **** */
  
  body {
    background-image: url('images/hintergrund-icon.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
  
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
  }
  
  /* **** Button Settings **** */
  .btn{
    
    border: 0;
    color: #ffffff;
    background-color: #0067b8;
    font-family: 'Segoe UI';
    height: 32px;
    width: 35%;
    font-size: 16px;
    vertical-align: middle;
    padding: 0px;
    float: right;
    margin-top: 7%;
    margin-right: -17%;
  }
  
  .btn:hover{
    background-color: #035b9f;
  }
  
  
  /* **** Main Container **** */
  
  #Main-container {
    display: flex;
    background-color: #ffffff; 
    width: 35%;
    height: 108%;
    /*min-width: 5px;*/
    
    margin-top: -5%;
    
    justify-content: center; 
    align-items: center; 
  
    box-shadow: 0 0 9px rgb(202, 197, 197);
    
  }
  
  
  /* **** Email input Feld **** */
  #email-field {
    width: 300px;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #282fb4;
    color: #000000;
    border-radius: 0;
    font-size: 16px;
    background-color: transparent;
    font-family: 'Segoe UI';
    outline: none;
  }
  
  #email-field::placeholder {
    color: #6c6b6b;
  }
  
  #email-field:hover {
    border-bottom-color: #000000;
    background-color: transparent;
  }
  
  #Email-login-table{
    margin-left: -8%;
    margin-top: -5%;
  }
  
  #wosprobiern{
    line-height: 0;
  }
  
  /* **** Header **** */
  .Header{
    font-size: 180% !important;
    font-weight: bolder;
    font-family: Segoe UI Semibold !important;
  }
  
  /* **** Login Options **** */
  
  #secondary-container {
    background-color: #ffffff; 
    width: 35%;
    height: 51%; /*34%*/
    margin-top: -4%;
  
    box-shadow: 0 0 9px rgb(202, 197, 197);
    
  }
   
  #login-options-table{
    margin-left: 10%;
    margin-top: -1%;
    font-size: 115%
  }
  
  #login-options-spacing{
    width: 25%;
  }
  
  #login-options-image{
    width: 65%;
  }
  
  /* **** Footer **** */ 
  
  #Footer{
  position: fixed;
  right: 10px;
  bottom: 10px;
  margin-bottom: -1%;
  }
  
  .Footer-spacing{
    width: 35%;
  }
  
  #ThreeDots{
    font-size: 40px;
    bottom: -100px;
  }