@import "https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap";

/* src/styles.scss */
:root {
  --light-primary-01: #5C42E5;
  --light-secondary-01: #FFCC33;
  --light-neutral-01: #FFFFFF;
  --light-neutral-02: #191919;
  --light-ui-01: #0E111D;
  --light-ui-02: #595959;
  --light-ui-03: #999999;
  --light-ui-04: #D9D9D9;
  --light-ui-05: #F2F2F2;
  --light-text-01: #191919;
  --light-text-02: #4C4C4C;
  --light-text-03: #767676;
  --light-text-04: #999999;
  --light-text-05: #FFFFFF;
}
* {
  font-family: "Source Sans 3", sans-serif;
}
html {
  overscroll-behavior: none;
}
body {
  background-color: #131312;
  color: #fbfafb;
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fade-in {
  animation-name: fadeIn;
  animation-duration: 650ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__delay-100ms {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}
.animate__delay-200ms {
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.animate__delay-300ms {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms;
}
.animate__delay-400ms {
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}
.animate__delay-500ms {
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}
.animate__delay-600ms {
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}
.animate__delay-700ms {
  -webkit-animation-delay: 700ms;
  animation-delay: 700ms;
}
.animate__delay-800ms {
  -webkit-animation-delay: 800ms;
  animation-delay: 800ms;
}
.animate__delay-900ms {
  -webkit-animation-delay: 900ms;
  animation-delay: 900ms;
}
.animate__delay-1000ms {
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
}
.animate__delay-1100ms {
  -webkit-animation-delay: 1100ms;
  animation-delay: 1100ms;
}
.animate__delay-1200ms {
  -webkit-animation-delay: 1200ms;
  animation-delay: 1200ms;
}
.animate__delay-1300ms {
  -webkit-animation-delay: 1300ms;
  animation-delay: 1300ms;
}
.animate__delay-1400ms {
  -webkit-animation-delay: 1400ms;
  animation-delay: 1400ms;
}
.animate__delay-1500ms {
  -webkit-animation-delay: 1500ms;
  animation-delay: 1500ms;
}
.animate__delay-1600ms {
  -webkit-animation-delay: 1600ms;
  animation-delay: 1600ms;
}
.animate__delay-1700ms {
  -webkit-animation-delay: 1700ms;
  animation-delay: 1700ms;
}
.animate__delay-1800ms {
  -webkit-animation-delay: 1800ms;
  animation-delay: 1800ms;
}
.animate__delay-1900ms {
  -webkit-animation-delay: 1900ms;
  animation-delay: 1900ms;
}
.animate__delay-2000ms {
  -webkit-animation-delay: 2000ms;
  animation-delay: 2000ms;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate__rotate {
  animation-name: rotate;
  animation-duration: 650ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.page {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.page .content {
  display: flex;
  flex-direction: column;
  max-width: 1248px;
  width: calc(100% - 32px);
  padding: 12px 16px;
}
.page .content .title {
  font-size: 32px;
  font-weight: 500;
  margin: 24px 0 12px 0;
}
.page .content .subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #a0a1a1;
  margin: 0;
  padding: 0 0 16px 0;
}
.page .content .panel {
  background-color: #212121;
  border-radius: 8px;
  padding: 24px;
  width: 100%;
}
.page .content .panel.clear {
  background-color: transparent;
}
.page .content .panel .title {
  font-size: 14px;
  font-weight: 500;
  color: #e9e9e9;
  margin: 0;
  padding: 0 0 16px 0;
}
.page .content .panel .text {
  font-size: 13px;
  font-weight: 400;
  color: #a6a6a6;
  margin: 0;
  padding: 0 0 16px 0;
}
.page .content .panel .text.right {
  text-align: right;
}
.textarea {
  background-color: #212121;
  border: 1px solid #565a64;
  border-radius: 8px;
  box-sizing: border-box;
  color: #e9e9e9;
  padding: 12px;
}
.textarea:focus {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 4px rgba(255, 255, 255, 0.6);
  outline: 0 none;
  transition: 150ms;
}
.button {
  align-items: center;
  background-color: #f99d7b;
  border-radius: 8px;
  border: none;
  color: #041e49;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  height: 52px;
  justify-content: center;
  line-height: 26px;
  text-decoration: none;
}
.button:hover {
  background-color: #f8ab8f;
  cursor: pointer;
  transition: 150ms;
}
.button:disabled {
  background-color: #565a64;
  cursor: initial;
}
.button.secondary {
  background-color: transparent;
  border: 1px solid #565a64;
  color: #f29686;
}
.button.secondary:hover {
  border: 1px solid #8f6956;
  background-color: #2d2927;
  transition: 150ms;
}
.button .material-symbols-outlined {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

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