.inputTyp {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 3px solid white;
  background-color: aliceblue;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  outline: none;
  border-radius: 20px;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.inputTyp:focus {
    border: 3px solid #F26B35;
  }

input[type=checkbox] {
        position: relative;
          border: 2px solid grey;
          border-radius: 2px;
          background: none;
          cursor: pointer;
          line-height: 0;
          margin: 0 .6em 0 0;
          outline: 0;
          padding: 0 !important;
          vertical-align: text-top;
          height: 20px;
          width: 20px;
          -webkit-appearance: none;
        opacity: .5;

      }

      input[type=checkbox]:hover {
        opacity: 1;
        box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);

    }

      input[type=checkbox]:checked {
        background-color: #F26B35;
        opacity: 1;
        border: 2px solid #F26B35;
        box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
      }

      input[type=checkbox]:before {
        content: '';
        position: absolute;
        right: 50%;
        top: 50%;
        width: 4px;
        height: 10px;
        border: solid #FFF;
        border-width: 0 2px 2px 0;
        margin: -1px -1px 0 -1px;
        transform: rotate(45deg) translate(-50%, -50%);
        z-index: 2;
      }
.label label
{
    display: -webkit-box;
}