/* Formular */ 

label{
    display: inline-block;
    width: 150px;
    text-align: right;
}

input[type="text"],input[type="email"], textarea, input[type="file"] {
    display: inline-block;
    width: 70%;
    margin-right: 20px;
    background: linear-gradient(0deg, rgba(30,33,38,0.8) 0%, rgba(29,34,38,0.8) 100%);
    border-bottom: 1px solid #2b2b2b;
    border-left: 1px solid #888888;
    border-right: 1px solid #4a4a4a;
    border-top: 1px solid #888888;
    color: #fff;
}

input[type="text"],input[type="email"]{
    height: 25px;    
}


input[type="file"]::file-selector-button {
    float: center; /* Hinweis: "float: center" ist keine gültige Eigenschaft */
    min-width: 20px;
    height: 38px;
    text-align: center;
    cursor: pointer;
    color: aliceblue;
    border: none;
  }
  
  input[type="file"]::file-selector-button{
    background-color: #2a313f;
    width: 200px;
  }

  input[type="file"]::file-selector-button:hover{
    background-color: #55637e;
  }


input[type="submit"] {
    display: block;
    margin-top: 20px;
}


input[type="submit"], input[type="button"]{
    width: calc(100% - 25px); /* Setzt die Breite entsprechend den anderen Eingabefeldern */
    height: 30px;
    background-color: #2a313f;
    color: aliceblue;
    border-bottom: 1px solid #2b2b2b;
    border-left: 1px solid #888888;
    border-right: 1px solid #4a4a4a;
    border-top: 1px solid #888888;
}
  
  input[type="submit"]:hover, input[type="button"]:hover, input[type="file"]::file-selector-button:hover {
    background-color: #55637e;
    border: 1px #a0a0a0 solid;
  }
  