@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #dddbff;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
}

main {
  height: 100vh;
  background: #0c122c url("../images/bg-mobile.svg");
  background-repeat: no-repeat;
  background-size: 100% 820px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.component-container {
  margin-top: -50px;
}

.logo-container {
  background-color: #1d2c67;
  border-radius: 10px 40% 10px 10px;
  width: 325px;
  height: 200px;
  display: block;
  padding: 40px;
  margin-bottom: 15px;
}

.logo-container .icon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.logo-container .icon-container a {
  background-color: #0c122c;
  border-radius: 8px;
  height: 45px;
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}

.progressbar-container {
  background-color: #1d2c67;
  border-radius: 10px;
  width: 325px;
  height: 160px;
  padding: 30px;
  position: relative;
}

.progressbar-container p {
  text-align: center;
}

.progressbar-container p span {
  font-weight: 700;
}

.progressbar-container .bar {
  background-color: #0c122c;
  border-radius: 10px;
  margin: 10px 0;
  display: block;
  width: 100%;
  height: 15px;
  overflow: hidden;
}

.progressbar-container .bar .pbar {
  height: 15px;
  background: -webkit-gradient(linear, left top, right top, from(#ffa399), to(#ff4d97));
  background: linear-gradient(to right, #ffa399, #ff4d97);
  display: block;
  width: 75%;
  position: relative;
  border-radius: 20px;
}

.progressbar-container .bar .pbar::before {
  position: absolute;
  content: "";
  right: 4px;
  top: 1.7px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #fff;
}

.progressbar-container .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
}

.progressbar-container .bubble {
  background-color: #dddbff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.5rem;
  width: 180px;
  height: 70px;
  position: absolute;
  bottom: -20%;
  left: 20%;
}

.progressbar-container .bubble p {
  font-weight: 700;
  margin-right: 10px;
  color: #000;
}

.progressbar-container .bubble span {
  font-weight: 400;
  font-size: 1rem;
  color: #848794;
}

@media (min-width: 930px) {
  main {
    background: #0c122c url("../images/bg-desktop.svg");
    background-repeat: no-repeat;
    background-size: 100% 50%;
    background-position: center bottom;
  }
  .component-container {
    margin-top: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .logo-container {
    margin-right: 30px;
    margin-bottom: 0;
    width: 350px;
  }
  .progressbar-container {
    width: 540px;
    height: 150px;
  }
  .progressbar-container p {
    color: #dddbff;
    text-align: left;
    line-height: 2;
  }
  .progressbar-container .bubble {
    top: -35%;
    left: 60%;
  }
  .progressbar-container .bubble::before {
    content: "";
    position: absolute;
    border: 15px solid transparent;
    border-top-color: #dddbff;
    border-right-color: #dddbff;
    bottom: -30%;
    right: 0;
  }
}
/*# sourceMappingURL=style.css.map */