@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

:root {
  --spacing-sm: 0.5em;
  --spacing-md: 1em;
  --spacing-lg: 2em;

  --red: 208, 33, 42;
  --violet: 47, 46, 65;
  --white: 222, 222, 222;
  --black: 33, 33, 33;
}

html, body {
  position: relative;
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

input, button {
  font-family: inherit;
  font-size: inherit;
  margin-bottom: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  box-sizing: border-box;
  border: 2px solid rgb(var(--white));
  border-radius: 2px;
  transition: border-color 225ms ease-in-out;
}
input:focus {
  outline: 0;
  border-color: rgb(var(--red));
}

button {
  color: rgb(var(--white));
  background-color: rgb(var(--red));
  outline: none;
  cursor: pointer;
}
button:focus {
  border-color: rgb(var(--red));
}

.mat-elevation-z2 {
  box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}

.mat-elevation-z8 {
  box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
}

.text-center {
  text-align: center;
}

.divider {
  border-bottom: 1px solid #dedede;
  margin: 1em 0;
}