/* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2023 metamuffin Copyright (C) 2023 tpart */ input[type="text"], input[type="password"] { border-radius: 7px; padding: 0.3em; margin: 0.2em; border: 2px solid var(--accent-light); } input[type="text"]:disabled, input[type="password"]:disabled { border: 2px solid grey; } input[type="submit"] { padding: 0.5em; margin: 1em; justify-self: center; border: 0px solid transparent; background-color: var(--accent-dark); border-radius: 8px; } input[type="submit"]:disabled { background-color: grey; } input[type="submit"]:hover { filter: hue-rotate(-20deg); } form.account { padding: 3em; border-radius: 1em; background-color: var(--background-light); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } form.account h1 { margin-top: 0px; }