html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Comfortaa", sans-serif;
  position: relative;
  background-color: #F6F5F8;
  overflow: hidden;
}

/* Small circles animations */
.anim-small-circle-first {
  animation: small-circle-first 2s infinite;
}

@keyframes small-circle-first {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(90deg);
  }
}
.anim-small-circle-second {
  animation: small-circle-second 2s infinite;
}

@keyframes small-circle-second {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(80deg);
  }
}
/* DecorationElementUsers - lines and cart animations */
.user-blue-line-first {
  animation: user-blue-line-first 2s infinite;
}

@keyframes user-blue-line-first {
  0%, 100% {
    width: 30%;
  }
  50% {
    width: 50%;
  }
}
.user-blue-line-second {
  animation: user-blue-line-second 2s infinite;
}

@keyframes user-blue-line-second {
  0%, 100% {
    width: 45%;
  }
  50% {
    width: 33%;
  }
}
.user-blue-line-third {
  animation: user-blue-line-third 2s infinite;
}

@keyframes user-blue-line-third {
  0%, 100% {
    width: 48%;
  }
  50% {
    width: 85%;
  }
}
.cart-anim {
  animation: cart 2s infinite;
}

@keyframes cart {
  0%, 100% {
    rotate: -7deg;
    scale: 1;
  }
  50% {
    rotate: 10deg;
    scale: 1.09;
  }
}
/* DecorationElementCalendar - lines and chart animations */
.calendar-white-line-first {
  animation: calendar-white-line-first 2s infinite;
}

@keyframes calendar-white-line-first {
  0%, 100% {
    width: 50%;
  }
  50% {
    width: 100%;
  }
}
.calendar-white-line-second {
  animation: calendar-white-line-second 2s infinite;
}

@keyframes calendar-white-line-second {
  0%, 100% {
    width: 25%;
  }
  50% {
    width: 50%;
  }
}
.anim-calendar-chart {
  animation: calendar-chart 2s infinite;
}

@keyframes calendar-chart {
  0%, 100% {
    transform: scaleY(1.4);
  }
  50% {
    transform: scaleY(1);
  }
}
/* DecorationElementLevel - level animation */
.anim-level {
  animation: level 2s infinite;
}

@keyframes level {
  0%, 100% {
    transform: scaleY(1.2);
  }
  50% {
    transform: scaleY(0.9);
  }
}
/* DecorationElementWeek - lines animation */
.anim-week-line-one {
  animation: week-line-one 2s ease-in infinite;
}

@keyframes week-line-one {
  0%, 100% {
    height: 50%;
  }
  50% {
    height: 70%;
  }
}
.anim-week-line-two {
  animation: week-line-two 2s ease-in infinite;
}

@keyframes week-line-two {
  0%, 100% {
    height: 40%;
  }
  50% {
    height: 75%;
  }
}
.anim-week-line-three {
  animation: week-line-three 2s ease-in infinite;
}

@keyframes week-line-three {
  0%, 100% {
    height: 60%;
  }
  50% {
    height: 75%;
  }
}
.login {
  height: 100dvh;
  display: flex;
  align-items: center;
}

.section {
  position: relative;
  z-index: 5;
  margin-left: 10%;
  background-color: #F6F5F8;
  padding: 20px;
}
.section__logo {
  position: absolute;
  top: -114px;
  width: 165px;
  height: 30px;
}
.section__title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 38px;
  color: #3372F9;
  margin-bottom: 10px;
}
.section__text {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  margin-bottom: 44px;
}

.form {
  display: flex;
  flex-direction: column;
  max-width: 446px;
}
.form__label {
  font-weight: bold;
  font-size: 16px;
  color: #09022B;
  margin-bottom: 6px;
  font-size: 16px;
  padding-left: 12px;
}
.form__input {
  padding: 8px 13px 9px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #09022B;
  outline-color: #3372F9;
  border: 1px solid transparent;
  border-radius: 31px;
  margin-bottom: 11px;
  width: 100%;
}
.form__input_error {
  padding: 8px 13px 9px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #09022B;
  outline-color: #3372F9;
  border: 1px solid #FF0A0A;
  border-radius: 31px;
  margin-bottom: 11px;
  width: 100%;
}
.form__password {
  position: relative;
  margin-bottom: 14px;
}
.form__eye {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 12%;
  right: 14px;
  cursor: pointer;
}
.form__memory {
  display: flex;
  justify-content: space-between;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  font-size: 14px;
}
.form__memory input[type=checkbox] {
  display: none;
}
.form__memory label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  vertical-align: middle;
  margin-right: 8px;
}
.form__memory input[type=checkbox]:checked + label::before {
  content: "";
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  background: url("../assets/done.svg") no-repeat;
  position: relative;
  top: 2px;
  left: 2px;
}
.form__checkbox {
  display: grid;
  align-items: center;
}
.form__forget {
  color: #3372F9;
  text-decoration: none;
}
.form__login-btn {
  background-image: linear-gradient(90deg, #08FFB8 0%, #1EB6DA 42%, #477FF7 100%);
  border: none;
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 12px 0 10px 0;
  text-align: center;
  color: white;
  border-radius: 27px;
  cursor: pointer;
  margin-top: 30px;
}

.decoration {
  position: absolute;
  top: 50%;
  right: -15%;
  transform: translateY(-50%);
}
.decoration__wrap {
  position: absolute;
  top: 22%;
  left: 0;
}
.decoration__big-circle {
  width: 831px;
  height: 831px;
  transform: rotate(-90deg);
  position: relative;
  z-index: 1;
}
.decoration__small-circle {
  width: 170px;
  height: 170px;
  position: absolute;
}
.decoration__small-circle_first {
  position: absolute;
  top: 15%;
  left: 20%;
  z-index: 0;
}
.decoration__small-circle_second {
  position: absolute;
  bottom: 13%;
  left: 20%;
  z-index: 0;
}

.user {
  position: absolute;
  top: 10%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.user__item {
  width: 220px;
  height: 44px;
  padding: 6px 36px 6px 7px;
  border-radius: 8px;
  background-color: white;
  display: flex;
  align-items: center;
}
.user__avatar {
  width: 32px;
  height: 32px;
}
.user__lines-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  margin-left: 11px;
}
.user__gray-line {
  height: 5px;
  border-radius: 14px;
  background-color: #A2A2A8;
}
.user__gray-line_fisrt {
  width: 80%;
}
.user__gray-line_second {
  width: 50%;
}
.user__gray-line_third {
  width: 62%;
}
.user__blue-line {
  height: 5px;
  border-radius: 5px;
  background-color: #3372F9;
}
.user__blue-line_fisrt {
  width: 30%;
}
.user__blue-line_second {
  width: 45%;
}
.user__blue-line_third {
  width: 48%;
}

.cart {
  background-color: #3372F9;
  margin-top: 8px;
  margin-left: auto;
  padding: 0 17px;
  width: 159px;
  height: 39px;
  border-radius: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart__text {
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.calendar {
  width: 217px;
  height: 62px;
  padding: 8px 11px;
  border-radius: 12px;
  background-color: #3372F9;
  display: flex;
  gap: 4px;
  position: absolute;
  top: 50%;
  right: -140%;
  z-index: 1;
}
.calendar__icon-wrap {
  width: 48px;
  height: 100%;
  border-radius: 6px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar__lines-wrap {
  width: 40%;
}
.calendar__line {
  height: 6px;
  border-radius: 16px;
  margin-bottom: 5px;
  background-color: white;
}
.calendar__line_first {
  width: 50%;
}
.calendar__line_second {
  width: 25%;
}
.calendar__chart {
  position: absolute;
  bottom: 14px;
  right: 17px;
  transform: scaleY(1.4);
}

.level {
  width: 230px;
  height: 193px;
  border-radius: 12px;
  background-color: white;
  position: absolute;
  top: 58%;
  right: -112%;
  z-index: 0;
}
.level__wrap {
  height: 100%;
  display: flex;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
.level__text-first {
  font-weight: bold;
  font-size: 32px;
  text-transform: uppercase;
  margin-left: 12px;
}
.level__text-second {
  color: #3372F9;
  font-size: 15px;
  margin-left: 12px;
  margin-top: 5px;
  font-family: "Open Sans", sans-serif;
}
.level__icon {
  position: absolute;
  bottom: 29px;
  width: 100%;
  transform: scale(0.9);
}

.week {
  width: 180px;
  height: 98px;
  border-radius: 8px;
  background-color: #3372F9;
  padding: 8px 17px 12px 17px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -83%;
  right: -41%;
  z-index: -1;
}
.week__wrap {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 5px;
}
.week__chart {
  width: 14px;
  border-radius: 2px;
  background-color: #F6F5F8;
}
.week__chart_one {
  height: 50%;
}
.week__chart_two {
  height: 40%;
}
.week__chart_three {
  height: 60%;
}
.week__chart_four {
  height: 100%;
}
.week__chart_five {
  height: 100%;
}
.week__day {
  font-size: 8px;
  color: #F6F5F8;
}

.group {
  width: 164px;
  border-radius: 8px;
  background-color: white;
  padding: 9px 14px 9px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: -81%;
  right: -119%;
}
.group__icon {
  width: 49px;
  height: 24px;
}
.group__wrap {
  width: 100%;
}
.group__line {
  height: 5px;
  background-color: #D9D9D9;
  border-radius: 16px;
}
.group__line_one {
  margin-bottom: 3px;
}

@media screen and (max-width: 1280px) {
  .section {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .login {
    flex-direction: column;
  }
  .section {
    margin-left: 0;
    margin-top: 20%;
  }
  .decoration {
    bottom: 5%;
    right: 50%;
    transform: translateY(50%);
    transform: translateX(50%);
  }
  .decoration__big-circle {
    bottom: -20%;
    transform: rotate(10deg);
  }
  .decoration__wrap {
    top: 35%;
    left: 19%;
  }
  .decoration__small-circle_first {
    top: 33%;
    left: 50%;
  }
  .decoration__small-circle_second {
    bottom: 28%;
    left: 12%;
  }
}
@media screen and (max-width: 768px) {
  .login {
    align-items: center;
    justify-content: center;
  }
  .section__logo {
    top: -90px;
  }
  .section__title {
    font-size: 26px;
  }
  .section__text {
    font-size: 14px;
  }
  .form__input {
    font-size: 14px;
  }
  .form__login-btn {
    font-size: 16px;
  }
  .decoration {
    display: none;
  }
}
.mt-24 {
  margin-top: 24px;
}

.gradient {
  background-image: linear-gradient(0deg, #08FFB8 0%, #1EB6DA 42%, #477FF7 100%);
}/*# sourceMappingURL=index.css.map */