html {
  font-size: 95%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: white;
  box-sizing: border-box;
  color: #000;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: 1.7;
}
.container__box-2--form {
  align-items: center;
  display: none;
  flex-direction: column;
  margin-top: -10px;
  padding-bottom: 20px;
  padding-top: 30px;
  text-align: center;
}
.container__box-2--form-box {
  text-align: center;
  width: 90%;
}
.container__box-2--form-box-1 {
  transform: translateY(1rem);
}
.input {
  background-color: #ececec;
  border: none;
  border-radius: 0.3em;
  color: #000;
  font-family: "Dosis", sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  height: 1.5em;
  outline: none;
  padding: 1em;
  width: 80%;
}
.form-select {
  background-color: #ececec;
  border: none;
  border-radius: 0.3em;
  font-family: "Dosis", sans-serif;
  margin: 1%;
  outline: none;
  padding: 1em;
  width: 80%;
}
.form-select--box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.required {
  color: red;
  display: block;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 10px;
}
.container-p {
  font-size: 30px;
}
.card {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
  moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
  webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}
.registration {
  border-top: 7px solid blue;
}
button {
  background-color: transparent;
  border: 0;
}
.btns {
  appearance: button;
  background-color: blue;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 20px;
  margin: 10px;
  outline: none;
  overflow: visible;
  padding: 13px 16px;
  text-align: center;
  text-transform: uppercase;
  transform: translateZ(0);
  transition: filter 0.2s;
}
.btns:after {
  background-clip: padding-box;
  background-color: #1cb0f6;
  border: solid transparent;
  border-radius: 16px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.btns:active {
  background: none;
  border-width: 4px 0 0;
}
.imgprofile {
  bottom: 50px;
  margin: auto;
  margin-bottom: -30px;
  position: relative;
}
.percent {
  color: yellowgreen;
  font-size: 20px;
  font-weight: 900;
}
.imgcheck {
  bottom: 4px;
  margin-right: 5px;
  position: relative;
  width: 20px;
}
.imgsuggestions {
  height: 55px;
  width: 55px;
}
.btnadd {
  background-color: #93e4c1;
  border: 0;
  border-radius: 5px;
  color: darkgreen;
  height: 30px;
  padding-top: 5px;
}
.btnadd:hover {
  background-color: lightgreen;
}
.button-profile {
  align-items: center;
  appearance: none;
  background-color: #fff;
  border-radius: 24px;
  border-style: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 5px -1px,
    rgba(0, 0, 0, 0.14) 0 6px 10px 0, rgba(0, 0, 0, 0.12) 0 1px 18px 0;
  box-sizing: border-box;
  color: #3c4043;
  cursor: pointer;
  display: inline-flex;
  fill: currentcolor;
  font-size: 14px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.25px;
  line-height: normal;
  margin: auto;
  margin-bottom: 30px;
  margin-top: 30px;
  overflow: visible;
  padding: 2px 24px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 15ms linear 30ms, transform 270ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  width: 50%;
  will-change: transform, opacity;
}
.button-profile:hover {
  background: #f6f9fe;
  color: #174ea6;
}
.privacy {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
}
.card-img-top,
.card-body {
  cursor: pointer;
}
.glow {
  animation: scaleanimation 1.6s linear;
  transform: scale(1);
  z-index: 2;
  transition: 0.4s ease-in-out;
}
.glow:before {
  animation: glowing 1.6s linear;
  content: "";
  background: linear-gradient(
    45deg,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    violet,
    #ff00c8
  );
  background-size: 400%;
  border-radius: 20px;
  position: absolute;
  left: -2px;
  top: -2px;
  filter: blur(5px);
  height: calc(100% + 2px);
  width: 100%;
  opacity: 0;
  z-index: -1;
}

@keyframes scaleanimation {
  0% {
    transform: scale(1);
    z-index: 1;
  }

  50% {
    transform: scale(1.05);
    z-index: 2;
  }

  100% {
    transform: scale(1);
    z-index: 1;
  }
}

@keyframes glowing {
  0% {
    background-position: 0 0;
    opacity: 0;
  }

  50% {
    background-position: 100% 0;
    opacity: 0.3;
  }

  100% {
    background-position: 0 0;
    opacity: 0;
  }
}
.lastcard {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .input {
    width: 100%;
  }
  .lastcard {
    display: flex !important;
  }
}
@media screen and (min-width: 1600px) {
  .btns {
    width: 50%;
  }
  .percent {
    font-size: 24px;
  }
  .lastcard {
    display: flex !important;
  }
}
