input[type=text], select, input[type="password"], input[type="number"]{
    min-width: 200px;
    padding: 5px 2px 2px 2px;
    margin: 8px 0;
    display: inline-block;
    border: 0;
    border-bottom: 1px solid #535353;
    border-bottom: 1px solid #53535375;
    
    border-radius: 0px;
    box-sizing: border-box;
    background-color: rgba(200, 200, 200, 0);
    color: #131313;
    color: light-dark(#131313, #d5d5d5);
    transition: 0.2s;
    font-size: 1.3rem;
    text-align: center;
  }
  
input[type=text]:focus label{
  position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: #9b9b9b;
    font-weight:700;  
}

input[type=text]:focus, select:focus, input[type="password"]:focus, input[type="number"]:focus{
  border: 0;
  border-bottom: 2px solid #9b9b9b;
  padding: 5px 2px 2px 2px;
  
  border-width: 3px;
  border-image-slice: 1;
  outline-style: auto;
  -webkit-box-shadow: 0px 5px 5px -2px rgba(18, 18, 18, 0.46);
  -moz-box-shadow: 0px 5px 5px -2px rgba(18, 18, 18, 0.46);
  box-shadow: 0px 5px 5px -2px rgba(18, 18, 18, 0.46);
  border-radius: 0px;
}



  input[type=submit] {
    width: 19%;
    background-color: #348539;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  #login-continue-without-button{
    width: 36%;
    background-color: #527ca6;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  #login-continue-without-button:hover{
      background-color: #418dd9;
  }
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
  }
  input[type="color"]::-webkit-color-swatch {
    border: none;
  }



  .gui-readout-value, #current_seat_value_text{
    width: 60px;
    min-width: 50px;
    /* transform: scale(1.3); */
    align-items: center;
    justify-content: center;
    align-content: center;
    background-color: #ffffff;
    margin: 0px;
    border-radius: 5px;
    color: #404040;
    padding: 0px;
    font-weight: 100;
    letter-spacing: 0px;
    border: 1px solid #73737312;
    z-index: 10;
    font-size: 1.6rem !important;
  }