
input[type=text], input[type=password] {
    font-family: quicksandlight;
    font-size: 11pt;
    width: 300px;
    height: 40px;
    color: rgb(100,100,100);
    /*color: black !important;*/
    padding-top: 10px;
    background-color: black;
    border: 1px solid black;
    outline: none;
    text-align: center;
}
input[type=text]:focus, input[type=password]:focus {
    border-bottom: 1px solid rgb(30,30,30);
    width: 300px;
}
input:-webkit-autofill {
  /*-webkit-box-shadow: 0 0 0px 1000px black inset; */
  background-color: black;
  color: rgb(100,100,100) !important;
}
:placeholder-shown{
  text-align: center;
}
::placeholder{
  text-align: center;
}
input::-webkit-contacts-auto-fill-button,
input::-webkit-credentials-auto-fill-button {
  left:calc(50% + 150px);
  position: absolute;
  right: 0;
  background-color:  rgb(60,60,60);
}
input::-webkit-contacts-auto-fill-button:hover,
input::-webkit-credentials-auto-fill-button:hover {
  cursor: pointer;
  background-color:  rgb(100,100,100);
}
