.page-wrapper .container {
  padding-bottom: 100px;
}

input[type=text], input[type=date],select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

.page-wrapper .appl-page {
    position: relative;
    margin-left: 180px;
    width: 70%;
    min-height: 600px;
    background-color: darkblue;
    border: darkgray;
    border-radius: 10px;
    padding: 20px 50px 15px 50px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3), 0 10px 30px 0 rgba(0, 0, 0, 0.25);
}
  
  label {
    color: yellow;
  }

  
  input.invalid {
    background-color: #ffdddd;
  }

  .tab {
    display: none;
  }

  .page-wrapper .appl-page .appbutton {
    background-color: yellow;
    color: rgb(0, 3, 194);
    border: none;
    border-radius: 50%;
    padding: 10px 20px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer;
  }

 
  .page-wrapper .appl-page .appbutton:hover {
    opacity: 0.8;
  }
  
  #prevBtn {
    background-color: #bbbbbb;
  }

  .page-wrapper .appl-btn {
    background-color: yellow; 
    color: rgb(0, 3, 194);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50%;
  }

  .page-wrapper .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;  
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }
  
  .page-wrapper .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .page-wrapper .step.finish {
    background-color: #04AA6D;
  }

  .check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .check-container label {
    font-size: 12px;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .check-container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .check-container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .check-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .check-container .checkmark:after {
    left: 4px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  @media only screen and (max-width: 600px) {
    .page-wrapper .container {
      margin-bottom: initial;
    }
    .page-wrapper .container .header .login-btn {
      font-size: 12px;
      padding: 12px 16px;
    }
    .page-wrapper .appl-page{
      width: 97%;
      min-height: 550px;
      margin-left: 8px;
    }
  }
  @media only screen and (max-width: 412px) {
    input[type=text], input[type=date],select {
      padding: 8px 10px;
      font-size: 1em;
    }
    .page-wrapper .container {
      margin-bottom: initial;
    }
    .page-wrapper .container .header .login-btn {
      font-size: 10px;
      padding: 10px 14px;
    }
    .page-wrapper .appl-page{
      width: 97%;
      min-height: 550px;
      margin-left: 5px;
    }
    .page-wrapper .appl-page .appbutton {
      font-size: 10px;
      padding: 10px 14px;
    }
    .page-wrapper .step {
      height: 10px;
      width: 10px;
    }
  }
  @media only screen and (max-width: 360px) {
    .page-wrapper .container {
      margin-bottom: initial;
    }
    input[type=text], input[type=date],select {
      padding: 5px 10px;
      margin: 8px 0;
      box-sizing: border-box;
    }
    .page-wrapper .container .tab h5 {
      font-size: 1.2em;
    }
    .page-wrapper .container .tab h3 {
      font-size: 1.5em;
    }
    .container .header .login-btn {
      font-size: 11px;
      padding: 10px 14px;
    }
    .page-wrapper .appl-page{
      width: 100%;
      min-height: 550px;
      margin-left: 2px;
    }
    .page-wrapper .appl-page .appbutton {
      font-size: 11px;
      padding: 10px 14px;
    }
    .page-wrapper .step {
      height: 10px;
      width: 10px;
    }
  }