html {
    color-scheme: dark;
}


a {
    color: orange;
}

body {
    width: 80%;
    margin: 0 auto;
    font-family: sans-serif;
    max-width: 240px;
    color: lightblue;
}

#form-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 1.5rem;
}

.form-group label {
    margin-bottom: 4px;
}

/*
input:not([type="submit"]):not([type="button"]) {
}
 */

input:focus {
    outline: none;
    border-color: #0366d6;
    box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.1);
}

/*
button, input[type="submit"] {
    background-color: darkslategrey;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}
*/

input,
textarea,
select,
button {
    width: 100%;
    padding: 1em;
    margin: 0;
    box-sizing: border-box;
    border-width: 0;
    background-color: darkslategrey;
}
input:focus{
    outline: lightblue solid 0.1em;
}

button {
    cursor: pointer;
    margin-top: 0.5em;
}

button, input[type="submit"] {
    background-color: lightblue;
    color: black;
}

.message {
    padding: 1em;
}
.message.error {
    background-color: orange;
    color: black;
}

.message.info {
    background-color: grey;
    color: black;
}

.message.success {
    background-color: green;
    color: black;
}

/*
.recovery-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #b0d4ff;
    text-decoration: none;
}
*/
