body,
html {
  background: #ffffff;
  color: #070d25;
  height: 100%;
  width: 100%;
  line-height: 1;
  position: relative;
  font: 400 18px "Poppins", sans-serif;
}

/* Custom Scrollbar */
*::-webkit-scrollbar {
  width: 6px;
  height: 5px;
}

*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
}

*::-webkit-scrollbar-thumb {
  background-color: rgb(117 117 117 / 20%);
}

.custom-file-button input[type=file] {
  margin-left: -2px !important;
}

.custom-file-button input[type=file]::-webkit-file-upload-button {
  display: none;
}

.custom-file-button input[type=file]::file-selector-button {
  display: none;
}
.custom-file-button .input-group-text{
  background: #00d78b;
  color: #ffffff;
  border-radius: 50px;
  border-color: #ffffff;
  border-width: 5px;
}
.custom-file-button:hover label {
  background-color: #dde0e3;
  cursor: pointer;
}
.career-detail-section{
  padding: 150px 0 50px !important;
  position: relative;
  z-index: 1;
}
ul.opening-skills{
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}
ul.opening-skills li{
  padding: 10px 0 10px 25px;
  position: relative;
}
ul.opening-skills li::before{
  content: "";
  width: 10px;
  height: 10px;
  background: #2c67d1;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 18px;
}
ul.opening-details{
  list-style: none;
  margin: 0 0 35px;
  padding: 0;
}
ul.opening-details li{
  margin-bottom: 10px;
}
.career-detail-section h3{
  font-size: 36px;
  color: #070d25;
  font-weight: 600;
  margin-bottom: 30px;
}
.career-detail-section h5{
  font-size: 24px;
  color: #070d25;
  font-weight: 600;
  margin-bottom: 15px;
}
.career-detail-form{
  background: #ccf7e8;
  border-radius: 35px;
  padding: 30px;
}
.form-group{
  margin-bottom: 25px;
}
.career-detail-form .form-control{
  border-radius: 25px;
  height: 56px;
  border: 1px solid transparent;
  box-shadow: none;
  padding: 15px;
  color: #6d7b8f;
}
.svg_button button{
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  display: block;
  line-height: 45px;
}
.error{
  color:red
}
.svg_button.green button {
  --color: #00d78c;
 }
 .svg_button.green button:before{
  background-color: #ccf7e8;
   }
.svg_button button {
  --color: #ee48b4;
  background-color: var(--color);
  /* background-color: transparent; */
  background-position: 100% 100%;
  font-family: inherit;
  display: inline-block;
  padding: 10px 30px;
  position: relative;
  border: 2px solid var(--color) ;
  outline: 0 !important;
  transition: .5s; 
  z-index: 1;
  font-size: 16px;
  border-radius: 999px;
  font-weight: 500;
  color: #fff !important ;
  text-decoration: none !important;
  line-height: unset !important ;
  height: unset !important;
 }
 
.svg_button button:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #e0d2db;
  background: #ffd8e3;
  height: 150px;
  width: 100%;
  border-radius: 50%;
 }
 
.svg_button button:hover {
  color: #000 !important ; 
 }
 
.svg_button button:before {
  top: 105%;
  left: 0%;
  transition: all .5s;
 }

.svg_button button:hover:before {
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0;
  border-radius: 99px;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
 }
@media screen and (max-width: 575px) {
  .career-detail-section h3{
    text-align: center;
  }
  .career-detail-section h5{
    text-align: center;
  }
}