/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
}


.banner::after{
  content:'' ;
  background-image: url(../img/bannerafter.png);
  background-repeat: no-repeat;
  position: absolute;
  right: -15px;
  top: -15px;
  width: 158px;
  height: 215px;

}

.logo img{
  margin: 0;
  height: 135px;
  width: auto;
  padding: 10px 10px 0px 35px;
}

.container{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 10px 50px 10px 50px;
  position: relative;
  overflow: hidden;
}
.container h4{
  font-weight: 500;
}

.cover{
  border: 2px solid #A6A6A6;
  padding: 15px 0;
  
}

form{
  display: block;
  margin-top: 0;
  margin-block-end: 1em;
}

.main{
  table-layout: fixed;
  width: 100%;
  border: 0;
  border-collapse: collapse;
  margin: 0 auto;
}

table{
  text-indent: initial;
  white-space: normal;
  line-height: normal;
  font-weight: 300;
  font-style: normal;
  text-align: start;
  border-spacing: 2px;

}

colgroup{
  display: table-column-group;
}

col{
  display: table-column;
}

tbody{
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

tr{
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

td{
  display: table-cell;
  vertical-align: inherit;
}

.main td{
  padding: 0 8px;
  vertical-align: middle;
  border: 0;
}

.main input{
  width: 70%;
  border: 1px solid #ccc;
  margin: 2px 0;
  padding: 0 2%;
  height: 39px;
  text-align: right;
  border-radius: 5px;
}

.main input #gross_salary{
  background-color: #F2F2F2;
}

.main button{
  background-color: #1F4E79;
  border: none;
  color: white;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  border-radius: 10px;
  font-weight: 500;
  margin: 0;
  position: absolute;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: ;
}

.download{
  text-align: center;
  margin-top: 30px;
}

.download a{

}

.disc{
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 200;
  
}

.footer{
  padding: 10px 0px 10px 0px;
  z-index: 2;
  position: relative;
  display: block;
  background: #ED7D31;
  height: ;
}

.footer p{
  color: white;
  width: 50%;
}

.footer span{
  width: 50%;
  color: white;
  text-align-last: right;
}

.flex{
  display: flex;
}

@media only screen and (max-width:700px) {
  .banner::after{
    display: none;
  }
  .logo img{
    height: 100px;
  }
  .container{
    padding: 10px 20px 10px 20px;
  }
  .main input{
    width: 100%;
  }
  .main td{
    padding: 0 3px;
  }
  .flex{
    display: block;
  }
  .main button{
    padding: 12px 15px;

  }
}
