h1 {
  font-size: 30px;
  text-align: center;
}
h2 {
  font-size: 25px;
}
h3 {
  font-size: 20px;
  margin-bottom: 1.5rem;
}
button {
  max-width: 10rem;
  width: 100%;
  padding: 0.5rem 0 !important;
  border-radius: 2rem !important;
  background-color: #912130;
  color: #fff;
}
.form-control:focus {
  border-color: #0000004f;
}
.payroll-logo {
  margin: 0 auto 3rem;
  display: block;
}
.form-Tab-section {
  padding: 5rem 1rem;
}
.form-group label {
  font-size: 20px;
}
.submitClearBtn {
  display: flex;
  justify-content: end;
}
.clearFieldsBtn {
  margin-left: 2rem;
}
.ErrorMonthlyPayMsg1,.ErrorMonthlyPayMsg2,.percentFieldError {
  color: red;
  margin-top: 0.5rem;
}



/*
 CSS for the main interaction
*/
.form-Tab-section .tabset > input[type="radio"] {
    position: absolute;
    left: -200vw;
  }
  
  .form-Tab-section .tabset .tab-panel {
    display: none;
  }
  
  .form-Tab-section .tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
  .form-Tab-section .tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
  .form-Tab-section .tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
  .form-Tab-section .tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
  .form-Tab-section .tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
  .form-Tab-section .tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
    display: block;
  }
  
  
  
  .form-Tab-section .tabset > label {
    position: relative;
    display: inline-block;
    padding: 15px 15px 25px;
    border: 1px solid transparent;
    border-bottom: 0;
    cursor: pointer;
    font-weight: 600;
    width: 48%;
    text-align: center;
  }
  
  .form-Tab-section .tabset > label::after {
    content: "";
    position: absolute;
    left: 13px;
    bottom: 10px;
    width: 95%;
    height: 4px;
    background: #8d8d8d;
  }
  
  .form-Tab-section .tabset > label:hover,
  .form-Tab-section .tabset > input:focus + label {
    color: #3FAE2A;
  }
  
  .form-Tab-section .tabset > label:hover::after,
  .form-Tab-section .tabset > input:focus + label::after,
  .form-Tab-section .tabset > input:checked + label::after {
    background: #3FAE2A;
  }
  
  .form-Tab-section .tabset > input:checked + label {
    border-color: #ccc;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
  }
  
  .tab-panel {
    padding: 30px 0;
    border-top: 1px solid #ccc;
  }
  
  .form-Tab-section .tabset {
    /* max-width: 65em; */
    margin-top: 2.5rem;
  }


  .payroll-Summary-section .summary-box>div {
    display: flex;
    max-width: 27rem;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.payroll-Summary-section {
  margin-top: 6rem;
}