.loginSec {
  background: #060606;
  padding: 96px 0px;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.loginSec::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-25%, -50%);
  width: 678px;
  height: 678px;
  border-radius: 50%;
  background: conic-gradient(
    from 90deg at 50% 50%,
    rgba(0, 55, 52, 0.42) 170.6250035762787deg,
    rgba(0, 189, 178, 0.35) 359.9285888671875deg
  );
  filter: blur(125px);
  z-index: 1;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}
.loginWrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
}

.textCol {
  padding-top: 36px;
  width: 50%;
}
.loginHeading {
  font-size: 42px;
  font-weight: 700;
  line-height: 58.8px;
  text-align: left;
  color: #fff;
  margin-bottom: 24px;
  max-width: 426px;
}
.loginDesc {
  font-size: 16px;
  line-height: 27.2px;
  text-align: left;
  color: #fff;
}

.loginCard {
  border-radius: 8px;
  background: #ffffff;
  padding: 38px;
}

.loginCardHead h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: left;
  color: #121212;
}
.loginCardBody {
  margin-top: 18px;
}

.inputGroup {
  margin: 6px 0px;
}
.inputGroup label {
  font-size: 13px;
  font-weight: 600;
  line-height: 15.73px;
  text-align: left;
  color: #121212;
}
div.inputGroup{
  margin-top: 12px;
}
div.inputWrapper{
  position: relative;
  border-radius: 4px;
}
div.inputWrapper input {
  background: none;
  outline: none;
  border: none;
  font-size: 13px;
  line-height: 15.73px;
  text-align: left;
  width: 100%;
  border-radius: 4px;
  background: #f4f4f4;
  border: 1px solid #eee;
  padding: 0 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  height: 42px;
}
.inputWrapper input:hover,
.inputWrapper input:focus-within {
  border: 1px solid #05ada3;
}
div.inputWrapper input::placeholder {
  color: #858585;
  line-height: 15.73px;
  font-size: 13px;
}

.inputGroup .inputWrapper .showPass {
  background: none;
  outline: none;
  cursor: pointer;
  border: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.forgotPassword {
  width: 100%;
  text-align: end;
}

.linkItem {
  font-size: 13px;
  line-height: 22.1px;
  color: #05ada3;
  text-decoration: none;
}
.linkItem:hover {
  font-size: 13px;
  line-height: 22.1px;
  color: #05ada3;
  text-decoration: underline;
}

.loginCardFooter {
  width: 100%;
  margin-top: 38px;
}

.loginBtn {
  width: 100%;
  border-radius: 100px;
  background: linear-gradient(128.52deg, #24c7bd 19.91%, #046761 104.77%);
  padding: 14px 0px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  text-align: center;
  outline: none;
  border: none;
  cursor: pointer;
}
.loginBtn:hover {
  background: #019990;
}
.loginCardFooter p {
  font-size: 13px;
  line-height: 22.1px;
  text-align: center;
}
.formCol {
  width: 40%;
}

.error {
  border: 1px solid red !important;
}
.errorTxt {
  color: red;
}
#loginBtnAff-processing{
  pointer-events: none;
  background: #05ACA4;
  display: none;
  height: 45px;
}
@media (max-width: 575px) {
  .loginSec {
    padding: 20px 0px;
  }
  .loginWrapper {
    align-items: center;
    flex-direction: column;
    gap: 50px;
  }
  .textCol {
    width: 100%;
  }
  .loginHeading {
    font-size: 25px;
    line-height: 35px;
    text-align: left;
    max-width: unset;
    width: 100%;
  }
  .loginDesc {
    font-size: 15px;
    line-height: 25px;
  }
  .loginCard {
    padding: 25px 20px;
    min-width: 360px;
  }
  .formCol {
    width: 100%;
  }
}
