/* Oldschool vars */
/* We can't use a css var here (https://www.w3.org/TR/css-variables-1/#using-variables)
 * "The var() function can not be used as property names, selectors, or anything else besides property values."
 * And in media queries.
 * We are waiting for:
 * https://www.w3.org/TR/mediaqueries-5/#custom-mq
 * or
 * https://drafts.csswg.org/css-env-1/
*/
/* Cyan and orange */
:root {
  --main-high: #141414;
  --main-medium: #666666;
  --accent-high: #141414;
  --background-color: #F2F2F2;
  --default-font: 'ALS_Hauss', sans-serif;
  --border-radius: 0;
  --border-radius-circle: 0;
  --box-shadow: none;
  --header-height: 55px;
}
.auth-form .back {
  filter: grayscale(1);
  outline: 1px solid var(--main-high);
}
input:focus {
  outline-style: outset;
}
