/* @font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/montserrat/Montserrat-Regular.ttf"); }
@font-face {
  font-family: "Montserrat-Medium";
  src: url("../fonts/montserrat/Montserrat-Medium.ttf"); }
@font-face {
  font-family: "ElMessiri-SemiBold.ttf";
  src: url("../fonts/el_messiri/ElMessiri-SemiBold.ttf"); } 
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; } */

body {
  font-family: "sans-serif";
  font-size: 15px;
  color: #666;
  margin: 0;
      background-image: url('../images/background.png');
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: 100% 100%;
        top:  0; 
        left: 0 
    }

  
    @font-face {
      font-family: sans-serif;
      src: url(../font/Audiowide-Regular.ttf);
    }

    @font-face {
      font-family: sans-serif;
      src: url(../font/Audiowide-Regular.ttf);
      font-weight: bold;
    }

    * {
      font-family: sans-serif;
    }

  /* label{
    font-family: sans-serif;
    font-weight: bold;
}

select{
    font-family: sans-serif;
    font-weight: bold;
}

i {
    font-family: sans-serif;
    font-weight: normal;
}

small {
    font-family: sans-serif;
    font-weight: normal;
} */

p, h1, h2, h3, h4, h5, h6, ul {
  margin: 0; }

img {
  max-width: 100%; }

ul {
  padding-left: 0;
  margin-bottom: 0; }

a {
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

input, textarea, select, button {
  font-family: sans-serif; 
  font-size: 15px;
  color: #666; }

textarea {
  resize: none; }

:focus {
  outline: none; }

.wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../images/bg-registration-form-6.jpg") no-repeat center center;
  background-size: cover; }

.inner {
  min-width: 861px;
  transform: translateX(47px);
  margin: auto;
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding-top: 35px;
  padding-bottom: 35px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2); }

.image-holder img {
  border-radius: 15px;
  transform: translateX(-94px); }

form {
  padding-top: 42px;
  min-width: 63.88%;
  transform: translateX(-34px); }

h3 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 21px;
  color: #333;
  text-transform: uppercase;
  font-family: "ElMessiri-SemiBold.ttf"; }

.form-control {
  height: 47px;
  display: block;
  border: 1px solid #e6e6e6;
  background: none;
  border-radius: 5px;
  padding: 0 19px; }
  .form-control:focus {
    border: 1px solid #f4d5cc; }
  .form-control::-webkit-input-placeholder {
    color: #999; }
  .form-control::-moz-placeholder {
    color: #999; }
  .form-control:-ms-input-placeholder {
    color: #999; }
  .form-control:-moz-placeholder {
    color: #999; }

select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #999; }
  select.form-control option[value=""][disabled] {
    display: none; }

textarea.form-control {
  width: 100%;
  padding-top: 13px;
  padding-bottom: 13px; }

.form-row {
  display: flex;
  margin-bottom: 20px; }
  .form-row .form-control {
    width: 50%; }
    .form-row .form-control:first-child {
      margin-right: 20px; }
  .form-row .form-holder {
    width: 50%; }
    .form-row .form-holder .form-control {
      width: 100%; }

.form-holder {
  position: relative; }
  .form-holder i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px; }

button {
  height: 47px;
  width: 174px;
  display: flex;
  border: none;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 30px;
  cursor: pointer;
  font-family: "Montserrat-Medium";
  text-transform: uppercase;
  background: #84cde1;
  border-radius: 5px;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  overflow: hidden;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color; }
  button i {
    margin-left: 8px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0); }
  button:hover {
    -webkit-animation-name: hvr-back-pulse;
    animation-name: hvr-back-pulse;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-color: #17c8f8;
    color: white; }
    button:hover i {
      -webkit-animation-name: hvr-icon-buzz-out;
      animation-name: hvr-icon-buzz-out;
      -webkit-animation-duration: 0.75s;
      animation-duration: 0.75s;
      -webkit-animation-timing-function: linear;
      animation-timing-function: linear;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite; }

@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75); } }
@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75); } }
@-webkit-keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg); }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg); }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg); }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg); }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg); }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg); }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg); }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg); }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0); }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0); } }
@keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg); }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg); }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg); }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg); }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg); }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg); }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg); }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg); }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0); }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0); } }
@media (max-width: 991px) {
  .inner {
    min-width: auto;
    max-width: 660px; }

  form {
    padding-top: 0; } }
@media (max-width: 767px) {
  .inner {
    display: block;
    transform: translateX(0);
    border-radius: 0;
    box-shadow: none; }

  .image-holder img {
    transform: translateX(0);
    border-radius: 0; }

  form {
    transform: translateX(0);
    padding-top: 40px; }

  .form-row {
    display: block; }
    .form-row .form-control, .form-row .form-holder {
      width: 100%; }

  .form-control {
    margin-bottom: 20px; }

  .wrapper {
    background: none; } }

    #search {
      display: grid;
      grid-template-areas: "search";
      width: 100%;
      max-width: 420px;
      height: 60px;
      position: relative;
      margin: 0 auto; /* center horizontally */
    }

    #search input {
      grid-area: search;
      width: 100%;
      height: 100%;
      background: white;
      border: none;
      border-radius: 100px;
      font: 24px/1 system-ui, sans-serif;
      padding: 0 30px 0 60px;
      outline: none;
      color: black;
      z-index: 1; /* BEHIND the SVG */
    }

    #search svg {
      grid-area: search;
      width: 100%;
      height: 100%;
      overflow: visible;
      color: hsl(215, 100%, 50%);
      fill: none;
      stroke: currentColor;
      z-index: 2; /* ON TOP of the input */
      pointer-events: none; /* allows input underneath to be clickable */
    }

    .spark {
      fill: currentColor;
      stroke: none;
      r: 15;
    }

    .spark:nth-child(1) {
      animation:
        spark-radius 2.03s 1s both,
        spark-one-motion 2s 1s both;
    }

    @keyframes spark-radius {
      0% { r: 0; animation-timing-function: cubic-bezier(0, 0.3, 0, 1.57) }
      30% { r: 15; animation-timing-function: cubic-bezier(1, -0.39, 0.68, 1.04) }
      95% { r: 8 }
      99% { r: 10 }
      99.99% { r: 7 }
      100% { r: 0 }
    }

    @keyframes spark-one-motion {
      0% { transform: translate(-20%, 50%); animation-timing-function: cubic-bezier(0.63, 0.88, 0, 1.25) }
      20% { transform: rotate(-0deg) translate(0%, -50%); animation-timing-function: ease-in }
      80% { transform: rotate(-230deg) translateX(-20%) rotate(-100deg) translateX(15%); animation-timing-function: linear }
      100% { transform: rotate(-360deg) translate(30px, 100%); animation-timing-function: cubic-bezier(.64,.66,0,.51) }
    }

    .spark:nth-child(2) {
      animation:
        spark-radius 2.03s 1s both,
        spark-two-motion 2.03s 1s both;
    }

    @keyframes spark-two-motion {
      0% { transform: translate(120%, 50%) rotate(-70deg) translateY(0%); animation-timing-function: cubic-bezier(0.36, 0.18, 0.94, 0.55) }
      20% { transform: translate(90%, -80%) rotate(60deg) translateY(-80%); animation-timing-function: cubic-bezier(0.16, 0.77, 1, 0.4) }
      40% { transform: translate(110%, -50%) rotate(-30deg) translateY(-120%); animation-timing-function: linear }
      70% { transform: translate(100%, -50%) rotate(120deg) translateY(-100%); animation-timing-function: linear }
      80% { transform: translate(95%, 50%) rotate(80deg) translateY(-150%); animation-timing-function: cubic-bezier(.64,.66,0,.51) }
      100% { transform: translate(100%, 50%) rotate(120deg) translateY(0%) }
    }

    .spark:nth-child(3) {
      animation:
        spark-radius 2.05s 1s both,
        spark-three-motion 2.03s 1s both;
    }

    @keyframes spark-three-motion {
      0% { transform: translate(50%, 100%) rotate(-40deg) translateX(0%); animation-timing-function: cubic-bezier(0.62, 0.56, 1, 0.54) }
      30% { transform: translate(40%, 70%) rotate(20deg) translateX(20%); animation-timing-function: cubic-bezier(0, 0.21, 0.88, 0.46) }
      40% { transform: translate(65%, 20%) rotate(-50deg) translateX(15%); animation-timing-function: cubic-bezier(0, 0.24, 1, 0.62) }
      60% { transform: translate(60%, -40%) rotate(-50deg) translateX(20%); animation-timing-function: cubic-bezier(0, 0.24, 1, 0.62) }
      70% { transform: translate(70%, -0%) rotate(-180deg) translateX(20%); animation-timing-function: cubic-bezier(0.15, 0.48, 0.76, 0.26) }
      100% { transform: translate(70%, -0%) rotate(-360deg) translateX(0%) rotate(180deg) translateX(20%); }
    }




    .burst {
      stroke-width: 3;
    }

    .burst :nth-child(2n) { color: #ff783e }
    .burst :nth-child(3n) { color: #ffab00 }
    .burst :nth-child(4n) { color: #55e214 }
    .burst :nth-child(5n) { color: #82d9f5 }

    .circle {
      r: 6;
    }

    .rect {
      width: 10px;
      height: 10px;
    }

    .triangle {
      d: path("M0,-6 L7,6 L-7,6 Z");
      stroke-linejoin: round;
    }

    .plus {
      d: path("M0,-5 L0,5 M-5,0L 5,0");
      stroke-linecap: round;
    }




    .burst:nth-child(4) {
      transform: translate(30px, 100%) rotate(150deg);
    }

    .burst:nth-child(5) {
      transform: translate(50%, 0%) rotate(-20deg);
    }

    .burst:nth-child(6) {
      transform: translate(100%, 50%) rotate(75deg);
    }

    .burst * {}

    @keyframes particle-fade {
      0%, 100% { opacity: 0 }
      5%, 80% { opacity: 1 }
    }

    .burst :nth-child(1) { animation: particle-fade 600ms 2.95s both, particle-one-move 600ms 2.95s both; }
    .burst :nth-child(2) { animation: particle-fade 600ms 2.95s both, particle-two-move 600ms 2.95s both; }
    .burst :nth-child(3) { animation: particle-fade 600ms 2.95s both, particle-three-move 600ms 2.95s both; }
    .burst :nth-child(4) { animation: particle-fade 600ms 2.95s both, particle-four-move 600ms 2.95s both; }
    .burst :nth-child(5) { animation: particle-fade 600ms 2.95s both, particle-five-move 600ms 2.95s both; }
    .burst :nth-child(6) { animation: particle-fade 600ms 2.95s both, particle-six-move 600ms 2.95s both; }

    @keyframes particle-one-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(-20deg) translateX(8%) scale(0.5, 0.5) } }
    @keyframes particle-two-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(0deg) translateX(8%) scale(0.5, 0.5) } }
    @keyframes particle-three-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(20deg) translateX(8%) scale(0.5, 0.5) } }
    @keyframes particle-four-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(-35deg) translateX(12%) } }
    @keyframes particle-five-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(0deg) translateX(12%) } }
    @keyframes particle-six-move { 0% { transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001) } 100% { transform: rotate(35deg) translateX(12%) } }



    .bar {
      width: 100%;
      height: 100%;
      ry: 50%;
      stroke-width: 5;
      animation: bar-in 900ms 3s both;
    }

    @keyframes bar-in {
      0% { stroke-dasharray: 0 180 0 226 0 405 0 0 }
      100% { stroke-dasharray: 0 0 181 0 227 0 405 0 }
    }

    .magnifier {
      animation: magnifier-in 600ms 3.6s both;
      transform-box: fill-box;
    }

    @keyframes magnifier-in {
      0% { transform: translate(20px, 8px) rotate(-45deg) scale(0.01, 0.01); }
      50% { transform: translate(-4px, 8px) rotate(-45deg); }
      100% { transform: translate(0px, 0px) rotate(0deg); }
    }

    .magnifier .glass {
      cx: 27;
      cy: 27;
      r: 8;
      stroke-width: 3;
    }
    .magnifier .handle {
      x1: 32;
      y1: 32;
      x2: 44;
      y2: 44;
      stroke-width: 3;
    }



    #results {
      grid-area: results;
      background: hsl(0, 0%, 95%);
    }

    .btn-cari {
      font-size: 18px;
      background: none;
      border: none;
      position: relative;
      /* to do, calc arrow-stripes so they repeat nicely on animation loop   */
      --padding-block: 1rem;
      --padding-inline: 2rem;
      --arrow: 5rem;
      --arrow-stripes: .8rem;

      padding: var(--padding-block) var(--padding-inline);
      /* padding-left: calc(var(--padding-inline) + var(--arrow)); */
      filter: drop-shadow(4px 4px 4px hsl(0 0% 0% / .5));
      color: white;
      border-radius: 999vmax 999vmax 999vmax 999vmax;
      cursor: pointer;
      transition: all 125ms
    }

    .btn-cari::after{
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: -1;
      background-color: blue;
      background-image: linear-gradient(transparent 50%, hsl(0 0% 0% / .5) 0);
    }

    .btn-daftar {
      font-size: 18px;
      background: none;
      border: none;
      position: relative;
      /* to do, calc arrow-stripes so they repeat nicely on animation loop   */
      --padding-block: 1rem;
      --padding-inline: 2rem;
      --arrow: 5rem;
      --arrow-stripes: .8rem;

      padding: var(--padding-block) var(--padding-inline);
      padding-right: calc(var(--padding-inline) + var(--arrow));
      filter: drop-shadow(4px 4px 4px hsl(0 0% 0% / .5));
      color: white;
      border-radius: 999vmax 0 0 999vmax;
      cursor: pointer;
      transition: all 125ms
    }
    .btn-daftar:active {
      scale: .975;
    }  
    .btn-daftar:hover::after{
      animation-play-state: paused;
    }
    .btn-daftar::after{
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      z-index: -1;
      background-color: blue;
      background-image: linear-gradient(transparent 50%, hsl(0 0% 0% / .5) 0);
      animation: mask-position 5s linear infinite;
      
      --conic-stops: black 0 90deg, #0000 0;
      --linear-stops: #0000 0px, black 1px var(--arrow-stripes), #0000 calc(var(--arrow-stripes) + 1px) calc(var(--arrow-stripes) * 2);
      --mask-image:
        conic-gradient(from 225deg at right, var(--conic-stops)),
        conic-gradient(from 225deg at right, var(--conic-stops)),
        repeating-linear-gradient(-135deg, var(--linear-stops)),
        repeating-linear-gradient(-45deg, var(--linear-stops));
      --mask-position: 0 0, 0 0, 0 0, 0 100%;
      --mask-position-to: 0, 0, -100% 0 , -100% 100%;
      --mask-size: calc(100% - var(--arrow)) 100%, 100%, 200% 50%, 200% 50%;
      --mask-repeat: no-repeat, repeat, repeat-x, repeat-x;

      -webkit-mask-image: var(--mask-image);
      -webkit-mask-position: var(--mask-position);
      -webkit-mask-size: var(--mask-size);
      -webkit-mask-repeat: var(--mask-repeat);
      -webkit-mask-composite: source-over, source-out, source-over, source-over;

      mask-image: var(--mask-image);
      mask-position: var(--mask-position);
      mask-size: var(--mask-size);
      mask-repeat: var(--mask-repeat);
      mask-composite: add, subtract, add, add;
    }

    @keyframes mask-position {
      to { 
        -webkit-mask-position: var(--mask-position-to);
        mask-position: var(--mask-position-to);
      }
    }

/*# sourceMappingURL=style.css.map */
