
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
/* New Login CSS starts */

/* Custom reCAPTCHA disable class */

.nxt-btn-wrapper {
  position: relative;
  display: block;
  width: 100%;
}

/* Tooltip that appears when login is disabled */
.nx-disable-button-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-bottom: 8px;
  z-index: 1000;
  pointer-events: none;
}

.nx-disable-button-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #000;
}

/* Show tooltip only if the button inside wrapper is disabled via .custom-disable */
.nxt-btn-wrapper:hover button.custom-disable + .nx-disable-button-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Keep disabled look for the button but allow hover */
.custom-disable {
  opacity: 0.5;
  cursor: not-allowed;
}

:root {
  /* colors */
  --primary: #143f93;
  --black: #17173a;
  --error: #f05c5c;
  --white: #fefeff;
  --gray: #6f6f8d;
  --dark-blue: #0a8ffd;
  --light-blue: #e7edff;
  --light-gray: #dde2ee;
  --light-gray2: #f8f8f8;
  --light-gray3: #efefef;
  --ice-blue: #f4f8ff;
  --ice-blue2: #fafcff;
  --white-dark:#FFFFFF;


  /* font styles */
  --extraSmallFont: 10px;
  --smallFont: 12px;
  --regularFont: 14px;
  --mediumFont: 16px;
  --extraMediumFont: 18px;
  --largeFont: 20px;
  --extraLargeFont: 32px;
  --semiBold: 600;
  --bold: 700;

  /* Colors in RGB'S */
  --primary-rgb: ;
  --black-rgb: 0, 0, 0;
  --error-rgb: 240, 92, 92;
  --white-rgb: 254, 254, 255;
  --gray-rbg: 111, 111, 141;
  --dark-blue-rgb: 10, 143, 253;
  --light-blue-rgb: 231, 237, 255;
  --light-gray-rgb: 221, 226, 238;
  --light-gray2-rgb: 250, 252, 255;
  --light-gray3-rgb: 239, 239, 239;
  --ice-blue-rgb: 244, 248, 255;
  --ice-blue2-rgb: 250, 252, 255;
}

body {
  font-family: 'Nunito Sans', Source Sans Pro, sans-serif;
  font-size: 14px;
  padding: 0;
  margin: 0 auto;
  overflow-x: hidden;
}

* {
  font-family: 'Nunito Sans', Source Sans Pro, sans-serif;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
main,
section,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  color: var(--primary);
  font-size: var(--regularFont);
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  outline: none;
  color: var(--primary);
}

/*----- Normal Css starts -----*/

/* Common styles starts */
.nxt-card {
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0px 5px 15px rgba(var(--black-rgb), 0.15);
}

.nxt-input {
  position: relative;
  padding-bottom: 15px;
}

.nxt-input label {
  display: inline-block;
  padding-bottom: 10px;
  margin: 0;
  font-size: var(--regularFont);
  font-weight: var(--semiBold);
  line-height: 20px;
}

.nxt-input input {
  outline: none;
  background: var(--light-gray2);
  border: 1px solid var(--light-gray2);
  border-radius: 5px;
  padding: 10px 12px;
  margin-bottom: 5px;
  color: var(--black);
  width: 100%;
  height: 42px;
  transition: 0.15s ease all;
}

.nxt-input input:hover {
  background: var(--ice-blue2);
  border: 1px solid var(--dark-blue);
}

.nxt-input input:focus {
  background: var(--white);
  border: 1px solid var(--dark-blue);
  box-shadow: 0px 0px 0px 4px rgba(var(--dark-blue-rgb), 0.2);
  color: var(--black);
}

.nxt-input input:disabled {
  background: var(--light-gray3);
  border: 1px solid var(--light-gray3);
  color: rgba(var(--gray-rbg), 0.5);
  cursor: not-allowed;
}

.nxt-input .nxt-input-error {
  position: absolute;
  width: 100%;
  font-size: var(--extraSmallFont);
  font-weight: var(--bold);
  line-height: var(--mediumFont);
  color: var(--error);
}

.nxt-primary-btn {
  outline: none;
  border: none;
  font-size: var(--mediumFont);
  line-height: 45px;
  text-align: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(var(--black-rgb), 0.15);
  width: 100%;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: var(--bold);

}

.nxt-secondary-btn {
  outline: none;
  border: 1px solid var(--primary);
  font-size: var(--mediumFont);
  line-height: 45px;
  text-align: center;
  color: var(--primary);
 background: var(--white);
 border-radius: 5px;
 box-shadow: 0 5px 10px rgba(var(--black-rgb), 0.15);
 width: 100%;
 text-transform: uppercase;
 cursor: pointer;
 display: flex;
 justify-content: center;
 align-items: center;
 font-weight: var(--bold);

}

.nxt-error-snackbar {
  display: flex;
  align-items: center;
  position: relative;
  background: var(--error);
  color: var(--white);
  line-height: 20px;
  font-weight: var(--bold);
  padding: 15px;
  border-radius: 5px;
  width: 100%;
  min-height: 50px;
}
.nxt-error-snackbar .nxt-error-icon {
  position: relative;
  /* top: 2px; */
  background-image:url('../images/error.svg');
  display: inline-block;
  margin-right: 8px;
  display: flex;
}
.nxt-error-snackbar .nxt-close-icon {
  position: relative;
  background-image:url('../images/close.svg');
  display: inline-block;
  margin-left: auto;

}
.nxt-error-snackbar .nxt-error-contain{
  padding-right: 10px;
}
.nxt-icon-size{
  background-repeat: no-repeat;
  min-width: 18px;
  height: 18px;
  width: 18px;
  background-size: 100%;
}
.nxt-icon-size.nxt-icon-size-sm{
  background-repeat: no-repeat;
  min-width: 15px;
  height: 15px;
  width: 15px;
  background-size: 100%;
}
/* Common styles starts */

.nxt-login-screen-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 100px 25px;
}
.nxt-login-left {
  position: relative;
  z-index: 1;
  padding: 40px;
  width: 640px;
}
.nxt-login-right {
  position: relative;
  z-index: 0;
  margin: 50px 85px 50px -85px;
  width: 640px;
}
.nxt-login-right-content {
  background: var(--light-blue);
  padding: 50px 85px 50px 135px;
}
.nxt-login-right-content video {
  height: 375px;
}
.nxt-login-bg {
  background: var(--ice-blue) url('../images/login-bg.svg') no-repeat fixed center;
}
@media screen and (min-width: 1280px) and (max-width: 1365px) {
  .nxt-login-screen-wrapper {
    padding: 20px 60px 20px;
  }
  .nxt-login-right-content {
    padding: 50px;
  }
  .nxt-login-right {
    margin: 50px 50px 50px -50px;
    width: 580px;
  }
  .nxt-login-left {
    width: 580px;
  }
  .nxt-login-title.nxt-extra-large {
    font-size: 30px;
  }
}

@media screen and (min-width: 1366px) and (max-width: 1439px) {
  .nxt-login-screen-wrapper {
    padding: 20px 80px 20px;
  }
  .nxt-login-right-content {
    padding: 60px;
  }
  .nxt-login-right {
    margin: 50px 60px 50px -60px;
    width: 600px;
  }
  .nxt-login-left {
    width: 600px;
  }
  .nxt-login-title.nxt-extra-large {
    font-size: 30px;
  }
}

#pswd,
#password,
#email {
  /* width: 93%; */
  padding-right: 40px;
}
.view-pswd,
.view-password {
  background: url(../images/view-pwd-new.svg) no-repeat center;
  background-size: 20px;
  position: absolute;
  right: 15px;
  top: 42px;
  padding: 10px;
  cursor: pointer;
}
.view-pswd.active,
.view-password.active {
  background: url(../images/view-pwd-active.svg) no-repeat center;
  background-size: 20px;
  position: absolute;
  right: 15px;
  top: 42px;
  padding: 10px;
  cursor: pointer;
}

/* Carousel container */
.nxt-carousel-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the Videos by default */
.nxt-carousel-slide {
  display: none;
  height: 375px;
  margin-bottom: 40px;
}
.nxt-carousel-slide img {
  width: 100%;
}

.nxt-carousel-dots {
  text-align: center;
  padding: 20px;
  margin-bottom: -60px;
}

/* The dots/bullets/indicators */
.nxt-carousel-dot {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 1px;
  background-color: var(--light-blue);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.6s ease;
}

.nxt-carousel-active,
.nxt-carousel-dot:hover {
  background-color: var(--primary);
}

.nxt-carousel-dot.nxt-carousel-active {
  width: 20px;
  border-radius: 50px;
}

/*----- Normal CSS ends -----*/

/* Utility classes starts */

/* colors */
.nxt-gray {
  color: var(--gray);
}

.nxt-black {
  color: var(--black);
}

.nxt-error {
  color: var(--error);
}

.star {
  color: var(--error);
}

.note {
  font-size: 10px;
}

/* fonts */
.nxt-extra-small {
  font-size: var(--extraSmallFont);
}
.nxt-small {
  font-size: var(--smallFont);
}
.nxt-regular {
  font-size: var(--regularFont);
}
.nxt-medium {
  font-size: var(--mediumFont);
}
.nxt-extra-medium {
  font-size: var(--extraMediumFont);
}
.nxt-large {
  font-size: var(--largeFont);
}
.nxt-extra-large {
  font-size: var(--extraLargeFont);
}

/* font-weights */
.nxt-bold {
  font-weight: var(--bold);
}
.nxt-semi-bold {
  font-weight: var(--semiBold);
}

/* paddings */
.nxt-p-15 {
  padding: 15px;
}
.nxt-pt-5 {
  padding-top: 5px;
}
.nxt-pb-5 {
  padding-bottom: 5px;
}
.nxt-pb-8 {
  padding-bottom: 8px;
}
.nxt-pb-15 {
  padding-bottom: 15px;
}
.nxt-pb-25 {
  padding-bottom: 25px;
}
/* margins */
.nxt-mb-5 {
  margin-bottom: 5px;
}

.nxt-mb-10 {
  margin-bottom: 10px;
}
.nxt-mb-15 {
  margin-bottom: 15px;
}
.nxt-mb-20 {
  margin-bottom: 20px;
}
.nxt-mb-25 {
  margin-bottom: 25px;
}
.nxt-mb-30 {
  margin-bottom: 30px;
}
.nxt-mb-40 {
  margin-bottom: 40px;
}
.nxt-mb-50 {
  margin-bottom: 50px;
}

.nxt-mt-10 {
  margin-top: 10px;
}
.nxt-mt-15 {
  margin-top: 15px;
}
.nxt-mt-20 {
  margin-top: 20px;
}
.nxt-mt-25 {
  margin-top: 25px;
}
.nxt-mt-30 {
  margin-top: 30px;
}
.nxt-mt-40 {
  margin-top: 40px;
}
.nxt-mt-50 {
  margin-top: 50px;
}
.nxt-my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}
.nxt-mr-8{
  margin-right: 8px;
}
.nxt-text-center {
  text-align: center;
}

/* flex classes */
.nxt-d-flex {
  display: flex;
}
.nxt-w-100{
  width: 100%;
}
.nxt-align-items-end{
  align-items: end;
}
.nxt-align-items-center {
  align-items: center;
}

.nxt-justify-content-center {
  justify-content: center;
}
.nxt-justify-content-end {
  justify-content: end;
}

/* Utility classes ends */

/* Animation CSS starts */

/* Fading animation */
.nxt-fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

/* Animation CSS ends */

/* New Login CSS ends */

/*--------------------- Note: Don't write CSS here, write CSS in Normal CSS section ------------*/
p.nxt-login-subtitle {
  height: 50px;
}
.error-popup-backdrop {
  position: fixed;
  z-index: 1;
  background-color: rgba(0,0,0,.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.error-popup {
  background-color: var(--white);
  width: 660px;
  padding: 50px 100px;
  line-height: 22px;
  letter-spacing: 0.42px;
  border-radius: 10px;
}
.error-popup > img {
  display: block;
  margin: 0 auto 35px;
}
.error-popup button.nxt-primary-btn {
  max-width: 60px;
  margin-top: 40px;
  line-height: 14px;
  height: 36px;
}
.error-popup .modal-btn {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.error-popup ul {
  padding-left: 25px;
}
.error-popup ul li {
  margin-bottom: 5px;
}
.error-popup .modal-title {
  display: flex;
  align-items: center;
  font-size: var(--mediumFont);
  font-weight: var(--bold);
}
.error-popup .modal-title img {
  width: 18px;
  display: inline-flex;
  margin-right: 5px;
  margin-top: -2px;
}
#bannerSection h2,
#bannerSection p{
  display: none;
}
#bannerSection h2:first-child,
#bannerSection p:first-child{
  display: block;
}

.line-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 99%;
}

.line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--light-gray);
  color: var(--light-gray);

}

.text {
    margin: 0 8px;
    font-size: 12px;
    font-weight: 600;
    color:var(--gray);

}
.nxt-input input.nxt-error {
  position: relative;
  border: 1px solid var(--error);
}
.nxt-input input.nxt-error:focus {
  box-shadow: 0px 0px 0px 4px rgba(var(--error-rgb), 0.2);
}
.error-i{
  display: none;
  position: absolute;
  top: 43px;
  right: 14px;
}

input.nxt-error ~ .error-icon {
  display: flex;
}
.nxt-input .nxt-input-infix .nxt-lable{
  font-weight: var(--bold);
}
