* {
    box-sizing: border-box;
  }

  body {
    font-family: 'Blender Pro Medium';
    font-weight: 500;

    background-size: cover;
    background-repeat: no-repeat;
  }

  .video {
    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  .form {
    position: absolute;
    translate: 0 -50%;

    top: 50%;
    left: 5%;

    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }

  .form__title {
    font-size: 48px;
    font-weight: 700;

    text-align: center;
    text-transform: uppercase;

    color: #f2b705;
  }

  .form__control-bg {
    position: relative;
  }

  .form__control-bg::before {
    position: absolute;
    display: block;
    content: '';

    top: 0;
    right: 0;

    width: calc(100% + 5px * 2);
    height: calc(100% + 5px * 2);

    background-size: 100% 100%;
    background-image: url('input.png');

    translate: -5px -5px;
  }

  .form__control {
    padding: 5px 10px;

    position: relative;
    z-index: 1;

    display: block;
    width: 100%;

    font: inherit;
    font-size: 24px;

    color: #f2b705;
    background-color: transparent;

    border: none;
    outline: none;
  }

  input.form__control::placeholder {
    color: rgba(242, 183, 5, 0.35);
  }

  button.form__control {
    position: relative;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
  }

  button.form__control::before {
    position: absolute;
    display: block;
    content: '';

    top: 0;
    right: 0;

    width: calc(100% + 5px * 2);
    height: calc(100% + 5px * 2);

    background-size: 100% 100%;
    background-image: url('button.png');

    translate: -5px -5px;
  }

  button.form__control > span {
    position: relative;
    z-index: 1;
  }

  .form__text-button {
    font: inherit;
    font-size: 18px;

    color: #f2b705;
    background-color: transparent;

    border: none;
    outline: none;

    cursor: pointer;
    user-select: none;
  }

  #progressbar {
    position: absolute;

    top: 75%;
    right: 50%;

    width: 300px;
    height: 30px;

    transform: skew(30deg) translate(50%, -50%);
    background-color: #333;
  }

  #progressbar::before {
    --width: calc(var(--p) * 1%);

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #f2b705;
    z-index: 0;
    animation: load 5s forwards linear, glitch 2s infinite linear;
  }

  #progressbar::after {
    content: '';
    color: #000;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%) skewX(-30deg);
    z-index: 1;
  }

  @keyframes load {
    to {
      width: var(--width);
    }
  }

  @keyframes glitch {
    0%,
    5% {
      transform: translate(0, 0);
    }
    1% {
      transform: translate(-5%, -10%);
    }
    2% {
      transform: translate(10%, 30%);
    }
    3% {
      transform: translate(-43%, 10%);
    }
    4% {
      transform: translate(2%, -23%);
    }
  }