/* src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
html {
  background-color: #030005;
  background-image: url(/gradient-background.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: transparent;
}
button {
  border: none;
}
.body-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  max-width: 600px;
  max-height: 982px;
  width: 100%;
  height: auto;
  margin-top: 60px;
}
.vertical-landing-group,
.vertical-landing-group-center,
.vertical-landing-group-stretch {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 25px;
  gap: 50px;
}
.vertical-landing-group-stretch {
  align-items: stretch;
}
.vertical-landing-group-center {
  min-height: 100vh;
}
button {
  transition: transform 0.1s ease;
}
button:active {
  transform: scale(0.95);
}
.button,
.warning-button,
.emphasis-button,
.secondary-button,
.main-button {
  min-height: 40px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #D9D9D9;
  border-radius: 15px;
  padding: 10px;
}
.main-button {
  background: #D9D9D9;
  font-weight: 500;
  text-transform: uppercase;
  color: #030005;
}
.secondary-button {
  background: #1E0F2D;
  font-weight: 500;
  border-style: solid;
  border-width: 1.5px;
  border-color: #22C1D0;
}
.emphasis-button {
  font-weight: 600;
  background: #FD74FF;
  color: #D9D9D9;
}
.warning-button {
  background: #eb5172;
}
.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
}
.icon-button img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.list-title-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #D9D9D9;
}
.error-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #FF86A0;
}
.toggle-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  color: #D9D9D9;
  font-weight: 500;
  font-size: 16px;
}
.blur-and-border {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  border-style: solid;
  border-width: 1px;
  border-color: #615f5f;
}

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