:root {
  --text-regular: "Source Sans 3", "Roboto", "Arial", "Helvetica", sans-serif;
  --text-title: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;

  --padding-h: 32px;
  --padding-w: 24px;
}

html,
body {
  font-family: var(--text-title);
}

body {
  padding: var(--padding-h) var(--padding-w) !important;
  background: linear-gradient(
    180deg,
    rgba(198, 219, 251, 0) 0%,
    #c6dbfb 62%,
    #c5dafb 100%
  );
  background-repeat: no-repeat;
  height: 100vh;
  overflow: auto;
}

main {
  min-height: calc(600px - var(--padding-h) * 2);
}

header {
  display: flex;
  justify-content: space-between;
}

form {
  margin: 0 27px;
  margin-top: 10vh;

  h3 {
    margin-bottom: 16px;
    font-weight: 400;
  }

  label {
    font-family: var(--text-regular);
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1;
  }

  input {
    margin-bottom: 16px;
    height: 32px;
    border-radius: 6px !important;
    padding-left: 16px !important;
    box-shadow: 0px 0px 1px 0px rgba(50, 50, 71, 0.2),
      0px 1px 2px 0px rgba(50, 50, 71, 0.08);
    border: none !important;

    &::placeholder {
      font-size: 13px;
      font-family: var(--text-regular);
      color: #7a828a !important;
    }
  }

  button {
    margin-top: 24px;
  }
}

.cp-button {
  border-radius: 6px !important;
  font-family: var(--text-regular);
  font-size: 14px !important;
  font-weight: 400 !important;
  padding-left: 2em;
  padding-right: 2em;
  background-color: #06f !important;
}

.cp-steps {
  margin-top: 23vh;
  text-align: center;
}

.cp-title {
  font-size: 18px;
  font-weight: 700;
  color: #3d466e;
  margin-top: 22px;
  margin-bottom: 0.2em;
}

.cp-sub-title {
  font-family: var(--text-regular);
  font-size: 12px;
  font-weight: 400;
  color: #3d466e;
}

@keyframes cp-waves {
  0% {
    background-position-x: 0px;
  }

  50% {
    background-position-x: -6px;
  }

  100% {
    background-position-x: 0px;
  }
}

.icon-wrap {
  background: url("./on_call_bg.png");
  background-position-y: center;
  margin: 0 calc(var(--padding-w) * -1);
  animation: cp-waves 3s infinite both;
}

@keyframes cp-pulse {
  0% {
    box-shadow: 0 0 0 0 white;
  }

  70% {
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

.cp-pulse-animate {
  border-radius: 50%;
  animation: cp-pulse 1.5s infinite;
}
