  body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #efefef !important;
  }

  ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
  }
  h1 {
      font-size: 40px;
      color: #fff;
      text-align: center;
      margin: 0;
  }
  h2 {
    font-size: 96px;
    color: #fff;
    text-align: center;
    margin: 0 0 40px 0;
    }
    .container-inp {
      background-color: #007ea7;
      background-image: linear-gradient(315deg, #007ea7 0%, #80ced7 74%);
        min-height: 100vh; /* height of the browser viewport */
        display: flex;
        justify-content: center;
        align-items: center;
    }
  .input-container {
    display: flex;
  }
  
  /* <select> styles */
  .cari {
    /* Reset */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    outline: 0;
    font: inherit;
    width: 20em;
    height: 3em;
    padding: 0 4em 0 1em;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 0.25em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-right: 12px;
  }
  
  .button-cari {
    width: 10em;
    background: #3361AC;
    border: 0;
    color: #fff;
    border-radius: 0.25em;
    margin-left: 12px;
    cursor: pointer;
    font-weight: 600;
  }
  .button-cari:hover {
    background: #333;
  }
  
  select {
    /* Reset */
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    outline: 0;
    font: inherit;
    /* Personalize */
    width: 20em;
    height: 3em;
    padding: 0 4em 0 1em;
    background: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg) no-repeat right 0.8em center/1.4em, linear-gradient(to left, rgba(255, 255, 255, 0.3) 3em, rgba(255, 255, 255, 0.2) 3em);
    color: white;
    border-radius: 0.25em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    /* <option> colors */
    /* Remove focus outline */
    /* Remove IE arrow */
  }
  select option {
    color: inherit;
    background-color: #3361AC;
  }
  select:focus {
    outline: none;
  }
  select::-ms-expand {
    display: none;
  }
