:root {
  color-scheme: light dark;
}

body {
  --color-primary: #ff0058;
  --color-background0: #f9f9f9;
  --color-background1: #ffffff;
  --color-background2: #0c000c;
  --color-text0: #000000;
  --color-text1: #6c757d;
  --color-text2: #000000;
  --color-shadow-value0: 158, 158, 158;
}
body .logo-box img {
  content: url("../images/logo_light.png");
}

body.dark {
  --color-primary: #ff0058;
  --color-background0: #0c000c;
  --color-background1: #191919;
  --color-background2: #212121;
  --color-text0: #ffffff;
  --color-text1: #6c757d;
  --color-text2: #6c757d;
  --color-shadow-value0: 34, 34, 34;
}
body.dark .logo-box img {
  content: url("../images/logo_dark.png");
}

body {
  width: 100vw;
  height: 100vh;
  background: var(--color-background0);
  color: var(--color-text1);
  font-size: 16px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-hor-2 {
  display: flex;
  justify-content: space-between;
}

.flex-align-center {
  align-items: center;
}

.ag-margin-20 {
  margin: 20px;
}

.ag-margin-top-20 {
  margin-top: 20px;
}

.ag-margin-right-20 {
  margin-right: 20px;
}

.ag-margin-bottom-20 {
  margin-bottom: 20px;
}

.ag-margin-left-20 {
  margin-left: 20px;
}

.full-height {
  height: 100%;
}

.ag-btn-primary {
  background-image: linear-gradient(90deg, #ff0076 0%, #ff5c00 100%);
  color: rgb(240, 240, 240);
  outline: none;
  border: none;
  padding: 0 15px;
  font-size: 14px;
}

.ag-btn-primary-animation {
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ag-btn-primary-animation:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #ff0076 0%, #ff5c00 100%);
  border-radius: 10rem;
  z-index: -2;
}
.ag-btn-primary-animation:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-image: linear-gradient(90deg, #ff5c00 0%, #ff0076 100%);
  transition: all 0.3s;
  border-radius: 10rem;
  z-index: -1;
}
.ag-btn-primary-animation:hover {
  color: #fff;
}
.ag-btn-primary-animation:hover:before {
  width: 100%;
}

.ag-btn-standar {
  height: 32px;
}

.ag-btn-standar-round {
  height: 32px;
  border-radius: 16px;
}

/*# sourceMappingURL=style.css.map */
