/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
}
body {
  background-color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex-grow: 1;
}
p {
  color: #BFBFBF;
  line-height: 150%;
  font-size: 16px;
  font-family: "inter", sans-serif;
}
.important {
  color: #F2F2F2;
}
h1,
h2,
h3 {
  color: #BFBFBF;
  padding: 4px;
  text-align: center;
  font-family: "inter", sans-serif;
  font-size: 48px;
  font-weight: bold;
  filter: drop-shadow(0px 4px 4px rgba(255, 255, 255, 0.25));
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 24px;
}
input[type=text],
input[type=password] {
  margin: 4px;
  background-color: #262626;
  color: #D9D9D9;
  border: 2px solid #58FF85;
  padding: 4px 8px;
  border-radius: 50px;
}
input[type=text]:focus,
input[type=text] :focus-visible,
input[type=text] :focus-within,
input[type=password]:focus,
input[type=password] :focus-visible,
input[type=password] :focus-within {
  outline: none;
  color: #F2F2F2;
}
input[type=text]::placeholder,
input[type=password]::placeholder {
  color: #808080;
}
input[type=text].secondary,
input[type=password].secondary {
  border-color: #FFB338;
}
button {
  margin: 3px;
  font-size: 16px;
  padding: 16px 32px 16px 32px;
  background-color: #262626;
  color: #58FF85;
  border: 3px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 1px #58FF85;
}
button:hover {
  box-shadow: 0 0 2px 2px #58FF85;
  background-color: #404040;
}
button.secondary {
  box-shadow: 0 0 0 1px #FFB338;
}
button.secondary:hover {
  box-shadow: 0 0 2px 2px #FFB338;
}
a {
  color: #58FF85;
  font-size: var(--font-size, 16px);
  font-family: "inter", sans-serif;
  text-underline-offset: 25%;
  transition: all 0.25s ease;
}
a:hover {
  text-shadow: 1px 0 currentColor;
}
a.secondary {
  color: #FFB338;
}
img {
  border: 4px solid #58FF85;
  border-radius: 8px;
  color: #BFBFBF;
}
img.secondary {
  border-color: #FFB338;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
