/*--------------------------------------------------------------
## Counselor portal sample layout styles
--------------------------------------------------------------*/
.adven-minimal-body {
  font-family: DM Sans, sans-serif !important;
}
.input-container {
  position: relative;
}
.adven-logo {
  margin-bottom: 20px;
  margin-top: 20px;
  display: block;
}
.adven-logo > img {
  height: 35px;
  width: 260px;
  margin: 0 5px;
}
/*--------------------------------------------------------------
## Counselor portal-Login
--------------------------------------------------------------*/

/* Auth Pages */

.auth__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
}

.auth__logo {
  height: 40px;
  margin: 60px 0px 40px;
}

.auth__logo > img {
  height: 40px;
  width: 260px;
}

.auth__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 40px 0px;
  color: #212121;
}

.login__container {
  max-width: 600px;
  width: 100%;
  flex: 1;
}
.login__card {
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  padding: 44px 130px;
}
.login__header {
  font-size: 34px;
  color: #212121;
}
.login__subheader {
  font-size: 16px;
  text-align: center;
  color: #212121;
  margin-top: 20px;
}
.login__header-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}
.login__forgot-password {
  color: #0f682c;
  font-family: "DM Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.adven-login-span-check {
  line-height: 25px;
}
.adven-login-padding-null {
  padding: 0px;
}
.adven-login-checkmark {
  height: 14px;
  margin-right: 4px;
  width: 14px;
  top: 2px;
  border: 1px solid #869ab8;
}
.adven-login-check-container {
  padding-left: 18px !important;
  margin-bottom: 0 !important;
}
.adven-login-rm-div {
  color: #212121;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
/*--------------------------------------------------------------
## Counselor portal-Reset
--------------------------------------------------------------*/
.adven-reset-top-div {
  padding-top: 10px;
}
.adven-reset-btn {
  width: 100%;
}
.adven-reset-padding-null {
  padding: 0px;
}
/*--------------------------------------------------------------
## Counselor portal-Change password
--------------------------------------------------------------*/
.adven-changepass-tc-text {
  color: #626262;
  font-size: 12px;
  margin-top: 22px;
}
.adven-reset-email-login {
  min-width: 100%;
  font-size: 12px;
  margin-bottom: 10px;
}
/*--------------------------------------------------------------
## Student portal-Material Styles
--------------------------------------------------------------*/
.input-container input[type="text"],
.input-container input[type="email"],
.input-container input[type="password"] {
  width: 100%;
  background-color: #f1f3f5;
  border: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  height: 56px;
  color: #254430;
  /* font-family: DM Sans !important; */
  font-size: 16px;
  padding: 24px 16px 5px 16px;
}
.input-container input:not(:placeholder-shown) ~ label {
  font-size: 12px;
  line-height: 24px;
}
.input-container input[type="text"]:focus,
.input-container input[type="email"]:focus,
.input-container input[type="password"]:focus {
  outline: none;
  border-bottom: 2px solid #19ad4a;
  padding: 24px 16px 3px 16px;
}
.input-container label {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 16px;
  /* font-family: DM Sans !important; */
  line-height: 56px;
  pointer-events: none;
  margin-left: 16px;
  transition: font-size 0.3s ease, line-height 0.3s ease;
}
.input-container input[type="text"]:focus ~ label {
  font-size: 12px;
  line-height: 24px;
  transition: font-size 0.3s ease, line-height 0.3s ease;
}
.input-container input[type="email"]:focus ~ label {
  font-size: 12px;
  line-height: 24px;
  transition: font-size 0.3s ease, line-height 0.3s ease;
}
.input-container input[type="password"]:focus ~ label {
  font-size: 12px;
  line-height: 24px;
  transition: font-size 0.3s ease, line-height 0.3s ease;
}
.input-container select {
  width: 100%;
  background-color: #f1f3f5;
  border: none;
  border-radius: 4px;
  height: 56px;
  color: #19ad4a;
  /* font-family: DM Sans !important; */
  font-size: 16px;
  padding: 0px 12px;
  -webkit-appearance: none;
}
.input-container .select-wrapper {
  position: relative;
}
.input-container .select-wrapper:after {
  content: url("~@/assets/arrow.png");
  position: absolute;
  top: 30%;
  right: 10px;
  transform: translate(0px, -50%);
}
.input-container .select-wrapper ~ label {
  font-size: 16px;
  line-height: 56px;
  transition: font-size 0.3s ease, line-height 0.3s ease;
}

.input-container small:not(.text-red-300) {
  font-size: 12px;
  color: #254430;
  opacity: 0.5;
  padding-left: 16px;
  /* font-family: DM Sans !important; */
}
.input-container small.text-red-300,
.md-input-box small {
  font-size: 12px;
  padding-left: 16px;
  /* font-family: DM Sans !important; */
}
.input-group-container .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media only screen and (max-width: 1440px) {
  .container {
    width: calc(100% - 120px) !important;
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 1280px) {
  .container > div {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (max-width: 1152px) {
  .input-group-container {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .container {
    margin-top: 75px;
  }
  .container {
    width: 100% !important;
  }
}
.btn-adv-green:hover {
  border: 2px solid #1dbf53;
  background-color: #1dbf53;
  color: #ffffff;
  transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease,
    border 0.3s ease;
}
.btn-adv-green {
  width: 100%;
  display: inline-block;
  background-color: #19ad4a;
  height: auto;
  padding: 10px 20px;
  line-height: normal;
  border-radius: 3px;
  /* text-transform: uppercase; */
  font-weight: bolder;
  /* font-family: DM Sans Extra Bold; */
  /* border: none; */
  font-size: 14px;

  border: 2px solid #19ad4a;
  /* background-color: #FFCD00; */
  color: #ffffff;
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease,
    border 0.3s ease;
}

.form-group {
  margin-bottom: 15px;
}

.input-container input[type="text"],
.input-container input[type="email"],
.input-container input[type="password"],
.input-container select.form-control {
  background: #f1f3f5 !important;
  border: none;
  border-bottom: 2px solid #eee;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select.form-control:focus,
.has-error:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.alert-outer-div {
  min-width: 100%;
}
.alert {
  font-size: 12px;
  text-align: center;
  margin: 5px 0px;
}
.adven-minimal-background {
  background-color: #f1f1f5;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: none;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
.adven-help {
  font-size: 10px;
  margin-left: 12px;
}
.adven-form-container.adven-minimal-content {
  height: 67%;
  background-color: #f1f1f5;
}
.adven-form-container.adven-minimal-content .inner {
  position: absolute;
  max-width: 400px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.adven-tc {
  display: flex;
  justify-content: space-between;
}
.adven-minimal-footer-div {
  /* margin-top: 200px; */
  bottom: 50px;
  position: absolute;
  max-width: 400px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 10%);
}
.adven-minimal-container-inner {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 25px 35px 20px 40px;
}
.adven-minimal-head-div {
  min-width: 100%;
}
.adven-minimal-head {
  font-size: 22px;
  color: #323336;
}
.adven-minimal-head-sub {
  font-size: 11px;
}
.adven-minimal-form-div {
  margin-top: 12px;
}
.adven-minimal-link-div {
  font-size: 12px;
  text-decoration: none;
  color: #0f682c;
  font-weight: bolder;
}
.adven-minimal-link-div:hover {
  color: #0f682c;
}
.adven-minimal-owner-div {
  font-size: 10px;
  text-decoration: none;
  color: #a1a3a6;
}
.adven-minimal-privacy-a {
  font-size: 10px;
  text-decoration: none;
  color: #a1a3a6;
  margin-left: 2px;
}
.adven-minimal-privacy-a:hover {
  color: #a1a3a6;
}
.adven-minimal-footer-text {
  display: block;
  margin-top: 10px;
  color: #626262;
  font-size: 12px;
}
.adven-vertical-alignt {
  display: flex;
  align-items: center;
}
.help-block {
  font-size: 12px;
  color: #e40900;
  margin-left: 12px;
}
.alert-danger {
  color: #fff7f5 !important;
  background-color: #fe330d !important;
  border-color: #eb3110 !important;
}
.alert-success {
  color: #155724 !important;
  background-color: #d4edda !important;
  border-color: #c3e6cb !important;
}
.alert-warning {
  color: #574a13 !important;
  background-color: #f9df79 !important;
  border-color: #ecd575 !important;
}
.check-container input:checked ~ .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0px 3px 3px 0px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.check-container input:checked ~ .checkmark {
  background-color: #19ad4a;
  border: 0px;
}

.login-wrapper .section-1 {
  background: #293b4a;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.login-wrapper .section-1 .copy-right-text {
  position: absolute;
  bottom: 32px;
  color: #fafafa;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.login-wrapper .section-1 img {
  max-width: 80%;
}

.login-wrapper .section-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

.login-wrapper .section-2 .form-wrapper {
  width: 60%;
}

.login-wrapper .section-2 .form-wrapper .form-title-wrapper {
  margin-bottom: 24px;
  text-align: center;
}

.login-wrapper .section-2 .form-wrapper .form-title-wrapper p {
  color: #212121;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.login-wrapper .section-2 .form-title {
  color: #212121;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 43px;
}

.adv-inputv2-wrapper {
  height: 44px !important;
  max-width: 100% !important;
}

.adv-inputv2-label {
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 178.571% */
}

.recruiter-register {
  margin-top: 24px;
  text-align: center;
}

.recruiter-register p {
  color: #212121;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px; /* 165% */
}

.recruiter-register .register-link {
  color: #0f682c;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
}

.footer-wrapper {
  text-align: center;
}

.footer-wrapper p {
  color: #212121;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.privacy-terms {
  color: #A1A3A6;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.m-copy-right-text {
  display: none;
  margin-top: 24px;
}

@media only screen and (max-width: 768px) {
  .login-wrapper .section-2 {
    flex: 100%;
    max-width: 100%;
  }

  .login-wrapper .section-1 {
    display: none;
  }

  .login-wrapper .section-2 .form-wrapper {
    width: 80%;
  }

  .login-wrapper .section-2 {
    padding-top: 108px;
    padding-bottom: 33px;
  }

  .login-wrapper .section-2 .header-wrapper {
    padding-bottom: 100px;
  }

  .recruiter-register p {
    padding-bottom: 90px;
  }

  .footer-wrapper p {
    padding-bottom: 80px;
  }

  .m-copy-right-text {
    display: block;
  }
}
