  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,400;1,800&display=swap');

  :root {
    --purple: #884cfc;
  }

  body {
    height: 100vh;
    background-color: #f8f4f4;
    font-family: 'Poppins';
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wrapper {
    display: flex;
    padding: 40px;
    border-radius: 20px;
    border-bottom-right-radius: 60px;
    background-color: white;
    flex-direction: column;
  }

  .wrapper__form-input {
    display: flex;
    column-gap: 30px;
    padding-right: 100px;
  }

  .wrapper__input-blocks {
    color: grey;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: center;
  }

  .wrapper__input-blocks_forms {
    padding: 20px;
    border: none;
    border: solid 1px grey;
    border-radius: 10px;
    max-width: 100px;
    font-size: 24px;
  }

  .wrapper__input-submit {
    display: flex;
    align-items: center;
  }

  .stick {
    width: 100%;
    background-color: grey;
    opacity: 0.16;
    height: 2px;
  }

  .button-general {
    border: none;
    cursor: pointer;
    background-color: var(--purple);
    padding: 10px 13px;
    border-radius: 40px;
  }

  .wrapper__output {
    display: flex;
    column-gap: 10px;
    font-style: italic;
    font-weight: 800;
    font-size: 70px;
  }

  .wrapper__output_placeholder {
    color: var(--purple);
  }

  .wrapper__input-blocks_mistake {
    display: inline-block;
    color: #db6068;
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    height: 1px;
  }

  @media screen and (max-width: 375px) {
    .wrapper {
      width: 370px;
      box-sizing: border-box;
      padding: 20px 25px 20px 25px;
      row-gap: 50px;
    }
    .wrapper__input-blocks_forms {
      padding: 20px 0px 20px 15px;
      font-size: 20px;
      max-width: 80px;
    }
    .wrapper__form-input {
      column-gap: 20px;
    }
    .wrapper__output {
      font-size: 55px;
    }
    .wrapper__input-blocks_mistake {
      height: 25px;
    }
    .wrapper__input-submit {
      position: relative;
    }
    .button-general {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .form {
      display: flex;
      flex-direction: column;
      row-gap: 40px;
    }
  }