@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

body {
  font-size: 16px;
  font-family: "Rubik", serif;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
  color: #3d3d3d;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

/* IMAGE-CLASS */
.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rubik", serif;
}

h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 57.6px;
}

h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
}

h3 {
  font-size: 34px;
  line-height: 39.6px;
}

h4 {
  font-size: 28px;
  line-height: 33.6px;
}

h5 {
  font-size: 23px;
  line-height: 27.6px;
}

h6 {
  font-size: 19px;
  line-height: 22.8px;
}

p {
  font-size: 16px;
  font-weight: 400;
}

button.primary-btn {
  background: transparent;
  width: 100% !important;
  cursor: pointer;
  font-family: "Rubik", serif;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-size: 14px;
  color: #fff;
  border-radius: 30px;
  font-weight: normal;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}

.primary-btn {
  color: #fff;
  border: 1px solid #027dcf;
  transition: all 0.5s ease-in-out;
}
.primary-btn::after {
  content: "";
  position: absolute;
  height: 120%;
  width: 150%;
  background: #027dcf;
  transform: skewX(45deg);
  top: 0;
  left: -20%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover {
  color: #027dcf;
  border: 1px solid #027dcf;
  transition: all 0.5s ease-in-out;
}
.primary-btn:hover::after {
  left: 120%;
  transition: all 0.5s ease-in-out;
}

button.primary-btn {
  width: 100%;
}

::-moz-placeholder {
  font-family: "Rubik", serif;
}

input,
::placeholder {
  font-family: "Rubik", serif;
}

.login-banner {
  position: relative;
  display: flex;
  align-items: center;
  background: #d3ecff;
  padding: 100px 0px;
  z-index: 1;
}
.login-banner .left-pattern-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85%;
  z-index: -1;
  opacity: 0.3;
}
.login-banner .right-pattern-banner {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  z-index: -1;
  opacity: 0.3;
}

.login-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 42%;
  margin: 0 auto;
  padding: 75px 40px 60px;
  background: #fff;
  box-shadow: 0px 8px 80px 0px rgba(0, 5, 46, 0.06);
  border-radius: 30px;
  overflow: hidden;
}
.login-wrap .right-vector {
  position: absolute;
  top: -65px;
  right: -20px;
  width: 50%;
  opacity: 0.42;
}
.login-wrap .left-vector {
  position: absolute;
  bottom: -65px;
  left: -20px;
  width: 50%;
  opacity: 0.42;
}
.login-wrap .cross-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 14px;
}
.login-wrap .login-logo img {
  width: 270px;
  margin-bottom: 20px;
}

.login-btn-wrap {
  display: flex;
  gap: 40px;
  /*overflow: hidden;*/
  padding: 20px 0px;
}
.login-btn-wrap a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  border: 1px solid #b0b0b0;
  float: left;
  outline: none;
  cursor: pointer;
  width: 136px;
  height: 110px;
  padding: 15px;
  border-radius: 20px;
  transition: 0.3s;
}
.login-btn-wrap a i,
.login-btn-wrap a p {
  color: #3d3d3d;
}
.login-btn-wrap a.red-active {
  border: 1px solid #e70000;
}
.login-btn-wrap a.red-active i,
.login-btn-wrap a.red-active p {
  color: #e70000;
}
.login-btn-wrap a.blue-active {
  background-color: #d3ecff;
  border: 1px solid #027dcf;
}
.login-btn-wrap a.blue-active i,
.login-btn-wrap a.blue-active p {
  color: #027dcf;
}
.login-btn-wrap a.vacancy:hover {
  background-color: #d3ecff;
  border: 1px solid #027dcf;
}
.login-btn-wrap a.vacancy:hover i,
.login-btn-wrap a.vacancy:hover p {
  color: #027dcf;
}
.login-btn-wrap a.employer:hover {
  background-color: #fff;
  border: 1px solid #e70000;
}
.login-btn-wrap a.employer:hover i,
.login-btn-wrap a.employer:hover p {
  color: #e70000;
}
.login-btn-wrap a .blue-active-show {
  position: absolute;
  bottom: -12px;
  right: -14px;
  width: 35px;
}
.login-btn-wrap a .red-active-show {
  position: absolute;
  bottom: -12px;
  left: -14px;
  width: 35px;
}
.login-btn-wrap a i {
  font-size: 35px;
  margin-bottom: 10px;
}
.login-btn-wrap a p {
  font-size: 14px;
}

.login-module {
  width: 100%;
}
.login-module p {
  color: #b0b0b0;
}
.login-module .single-input {
  margin: 40px 0;
}
.login-module .single-input .input-div {
  border-bottom: 1px solid #b0b0b0;
  display: flex;
}
.login-module .single-input .input-div img {
  margin: 5px 0;
  width: 12px;
}
.login-module .single-input .input-div input {
  color: #3d3d3d;
  border: 0;
  width: 100%;
  outline: none;
  font-size: 14px;
  padding-bottom: 5px;
}
.login-module .single-input .input-div input::-moz-placeholder {
  color: #b0b0b0;
}
.login-module .single-input .input-div input::placeholder {
  color: #b0b0b0;
}
.login-module .forget {
  color: #027dcf;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  text-align: left;
}
.login-module .forget span {
  color: #6d6d6d;
  font-size: 14px;
}
.login-module .forget a {
  color: #027dcf;
}
.login-module .forget label {
  color: #027dcf;
}
.login-module .forget label input {
  margin-right: 3px;
}
.login-module .forget label a {
  color: #027dcf;
}
.login-module .round-check {
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.login-module .round-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.login-module .round-check .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  border: 1px solid #3d3d3d;
}
.login-module .round-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.login-module .round-check input:checked ~ .checkmark {
  background-color: #027dcf;
  border: 1px solid #027dcf;
}
.login-module .round-check input:checked ~ .checkmark:after {
  display: block;
}
.login-module .round-check .checkmark:after {
  left: 4px;
  top: 1px;
  width: 3px;
  height: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.login-module .agree-condition {
  display: flex;
  margin-bottom: 40px;
  text-align: left;
  font-size: 14px;
  position: relative;
}
.login-module .agree-condition a {
  color: #3d3d3d;
}
.login-module .agree-condition input {
  margin-right: 7px;
}
.login-module .or-class {
  display: flex;
  align-items: center;
  margin: 30px auto 0 auto;
}
.login-module .or-class .line {
  background: #b0b0b0;
  height: 1px;
  width: 100%;
}
.login-module .or-class span {
  border: 1px solid #b0b0b0;
  padding: 5px 8px;
  border-radius: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.login-module .login-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px 0px 80px 0px;
}
.login-module .login-icon .login-sub-icon {
  display: flex;
  align-items: center;
  width: 45px;
  height: 45px;
  padding: 8px;
  border-radius: 50%;
  background: #f6f6f6;
  border: 1px solid #e7e7e7;
}
.login-module .login-icon .fb-icon {
  padding: 15px;
}
.login-module .create-acc p {
  color: #6d6d6d;
}
.login-module .create-acc .underline-decor {
  color: #3d3d3d;
  text-decoration: underline;
}

.custom-select {
  position: relative;
  font-family: "Rubik", serif;
  margin-bottom: 50px;
}
.custom-select select {
  display: none;
}
.custom-select .select-selected {
  border-bottom: 1px solid #b0b0b0;
  text-align: left;
  color: #b0b0b0;
  font-size: 14px;
}
.custom-select .select-selected:after {
  position: absolute;
  content: "";
  right: 0;
  width: 7px;
  height: 7px;
  transform: rotate(225deg);
  border-top: 2px solid #b0b0b0;
  border-left: 2px solid #b0b0b0;
}
.custom-select .select-selected.select-arrow-active:after {
  transform: rotate(45deg);
  top: 7px;
}
.custom-select .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0px 2px 32px rgba(0, 0, 0, 0.08);
  padding: 0 20px;
  background: #fff;
}
.custom-select .select-items div {
  color: #b0b0b0;
  border-bottom: 1px solid #b0b0b0;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
}
.custom-select .select-items div:hover,
.custom-select .select-items div .same-as-selected {
  color: #3d3d3d;
  transition: all 0.5s ease-in-out;
}
.custom-select .select-hide {
  display: none;
}

@media (min-width: 1400px) {
  .login-banner {
    height: 100vh;
  }
}
@media (min-width: 2200px) {
  .login-banner {
    height: 100vh;
  }
}
@media (max-width: 1199px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .login-banner {
    padding: 80px 0px;
  }
  .login-wrap {
    width: 50%;
  }
}
@media (max-width: 950px) {
  .login-wrap {
    width: 65%;
  }
}
@media (max-width: 750px) {
  .login-wrap {
    width: 85%;
  }
  .login-banner {
    padding: 60px 0px;
  }
}
@media (max-width: 550px) {
  p {
    font-size: 14px;
  }
  .login-wrap {
    width: 100%;
    padding: 60px 30px 35px;
  }
  .login-wrap .login-logo img {
    width: 230px;
  }
  .login-btn-wrap {
    gap: 15px;
  }
  .login-btn-wrap a {
    width: 120px;
    height: 100px;
    padding: 10px;
  }
  .login-btn-wrap a p {
    font-size: 13px;
  }
  .login-btn-wrap a i {
    font-size: 25px;
  }
}
.login-module .login-icon {
  padding: 25px 0px 55px 0px;
}
.login-module .forget {
  font-size: 14px;
}/*# sourceMappingURL=login-style.css.map */

.error-message {
  font-size: 12px;
  color: #e70000;
  text-align: left;
}
.single-input-error {
  border-bottom: 1px solid red!important;
}

.abs-error {
  position: absolute;
  text-align: left;
  width: 100%;
  top: 30px;
  font-size: 12px;
  color: red;
}
.abs-error-below {
  position: absolute;
  text-align: left;
  width: 100%;
  top: 45px;
  font-size: 12px;
  color: red;
}
.fullheight {
  min-height: 100vh;
}