:root {
  --background-black: #111111;
  --foreground-blue: #0099e9;
}

html,
body {
  margin: 0;
  width: 100%;
}

body {
  background-image: url(../images/BaseBackground.webp);
  background-repeat: repeat;
  background-size: contain;
}

button {
  border: 0;
}

.logo {
  background-image: url("../images/CompanyLogo.webp");
  height: 3rem;
  width: 3rem;
  background-repeat: no-repeat;
  background-size: 100%;
}

.card {
  --radius: 1rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 5px gray;
  overflow: hidden;
}

*[id] {
  scroll-margin-top: 5rem;
}

.content {
  padding-top: 1.1rem;
}

.valid.modified:not([type="checkbox"]) {
  outline: 1px solid #26b050;
}

button {
  color: white !important;
  text-shadow: none !important;
  font-size: 1rem;
  transition: font-size 0.1s linear, width 0.1s linear, height 0.1s linear, margin 0.1s linear;

  background-image: url("/images/ButtonSecondaryBackground.webp");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-origin: border-box;
  background-color: transparent;

  padding: 0.75rem 1.2rem;
}

button:hover {
  font-size: 1.2rem;
  margin-top: -0.1rem;
}

input {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.2rem;
  font-size: 1rem;
}