/** {
    border: 1px solid green;
}*/

body {
    min-height: 100%;
    text-align: center;
    background-color: #Fe5c00;
	display: flex;
    align-items: center;
    justify-content: center;
}
.content {
    background-color: #dddddd;
    border: 1px solid black;
    border-radius: 5px;
    width: 100%;
    max-width: 500px;
    padding: 25px 0;
    font-family: "Roboto", sans-serif;
}
#logo{
    width: 100%;
    height: auto;
    max-width: 90px;
  }

  a {
      color: black;
      text-decoration: none;
  }

  a:hover {
      text-decoration: underline;
  }
input[type=text] {
    width: 100%;
    max-width: 275px;
    padding: 12px 5px;
    margin: 10px 0;


}
input[type=submit] {
    width: 100%;
    max-width: 275px;
    padding: 12px 5px;
    margin: 10px 0;
}
input[type=password] {
    width: 100%;
    max-width: 275px;
    padding: 12px 5px;
    margin: 10px 0;


}
input[type=tel] {
    width: 100%;
    max-width: 275px;
    padding: 12px 5px;
    margin: 10px 0;


}
input[type=checkbox] {
    display: inline;
    text-align: left;
}
input[type=button], input[type=submit] {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
     width: 100%;
    max-width: 275px;
    padding: 12px 5px;
    margin: 10px 0;
    
    -moz-appearance: none;
    -webkit-appearance: none;
    
}
button {
    width: 100%;
    max-width: 275px;
    padding: 12px 5px;
    margin: 10px 0;
    color: black;
    background-color: #F0F0F0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

}

@media (prefers-color-scheme: dark) {
    body {
      color: #eee;
      background: #121212;
    }
  
    a {
      color: #809fff;
    }
    input, select {
        background-color: #3f3f3f;
        color: white;
    }
    .content {
        border: 1px solid black;
        border-radius: 5px;
        /* background-color: #ededed; */
        /* background-image: linear-gradient(to bottom right, #ededed, #bdbdbd); */
        background-image: linear-gradient(to bottom right, #282828, #3f3f3f) !important;
        max-width: 300px;
        width: 100%;
        margin: 1em;
        padding: 1em;
    }
    .content #submit {
        background: #282828;
        color: white;
        -webkit-appearance: none;
    }
    button {
        background: #282828;
        color: white;
        -webkit-appearance: none;
    }
    #submitButton {
        background: #282828;
        color: white;
        -webkit-appearance: none;

    }
  }