.login-container {
  display: flex;
  flex-direction: row;
  margin: 0px auto;
  max-width: 996px;
}

.defauld-div {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 60px 0 0 10px;
}
.left-side {
  width: 50%;
  padding-right: 20px;
}
.right-side {
  width: 50%;
}

.text {
  justify-content: center;
  font-family: AvenirNextLTCom-Demi;
  color: #7F7F7F;
  font-size: 14px;
  letter-spacing: 1.5px;
}

.login-title {
  margin: 0px;
  font-family: AvenirNextLTCom-Regular;
  color: #333333;
  font-size: 50px;
  width: 426px;
  line-height: 1.32;
  padding-bottom: 12px;
}

.sub-text {
  width: 315px;
  font-family: AvenirNextLTCom-Demi;
  font-size: 18px;
  line-height: 1.39;
  margin: 15px 0 0px;
}

.login-link {
  color: #009cdc !important;  
  text-decoration: none;
  font-family: AvenirNextLTCom-Demi !important;
}

.web-link {
  font-family: AvenirNextLTCom-Regular !important;
}

.link {
  width: 155px;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  margin-top: 10px;
}

.register-link{
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  color: #009cdc !important;
}

.select-role {
  font-size: 18px;
  font-family: AvenirNextLTCom-Regular;
  margin: 30px 0px 0px;
}

.login-Btn {
  font-family: AvenirNextLTCom-Demi;
  font-size: 12px;
  width: 195px;
  height: 50px;
  margin: 30px 0px;
  background-color: #fff;
  color: #000;
  justify-content: space-between;
  text-align: left;
  display: flex;
  padding: 0 20px;
  line-height: 50px;
  cursor: pointer;
  outline: none;
  border: 1.5px solid black;
}

.modal-loginBtn {
  width: 128px;
  margin: 10px 0px 30px;
 }

.help-text {
  font-size: 14px;
  font-family: AvenirNextLTCom-Demi;
  line-height: 1;
  color: #333333;
}

.help-text .phone {
  font-family: AvenirNextLTCom-Regular;
  color: #000000;
}

.arrow_fwd_icon {
  width: 16px;
  height: 16px;
  line-height: 50px;
  padding-right: 5px;
}

.button-grp {
  display: flex;
  flex-direction: row;
}

.role-button {
  font-family: AvenirNextLTCom-Demi;
  font-size: 14px;
  line-height: 1.43;
  width: 213px;
  height: 63px;
  margin-top: 22px;
  padding: 13px 20px 9px;
  background-color: #f7f7f7;
  color: #000;
  text-align: center;
  cursor: pointer;
  outline: none;
  border: none;
}

/* for role button*/
.active {
  background-color: #009cdc !important;
  color: white !important;
}

.input-group {
  position: relative;
  margin: 50px 0 20px;
}

.inputBox {
  font-family: AvenirNextLTCom-Demi;
  font-size: 18px;
  padding: 7px 5px 5px 0px !important;
  display: block;
  width: 300px;
  border: none !important;
  border-bottom: 1px solid #757575 !important;
}

.inputBox:focus {
  outline: none;
}

.txt-label {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 10px;
  font-family: AvenirNextLTCom-Demi;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.active-label {
  top: -20px;
  font-size: 14px;
  color: #1a1a1a;
}

.inputBox:focus ~ .txt-label{
  top: -20px;
  font-size: 14px;
  color: #1a1a1a;
}

.bar {
  position: relative;
  display: block;
  width: 300px;
}

.bar:before,
.bar:after {
  content: '';
  height: 1px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #3f51b5;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

.inputBox:focus ~ .bar:before,
.inputBox:focus ~ .bar:after {
  width: 50%;
}

.check-container {
  width: auto;
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-weight: normal;
  font-size: 14px;
  font-family: AvenirNextLTCom-Regular;
  margin-top: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 14px;
  width: 14px;
  border: 1px solid grey;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check-container input:checked ~ .checkmark {
  border: 1px solid #009cdc;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
  display: block;
  
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #009cdc;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#advisorLogin {
  display: none;
}

.advisor-wrapper {
  display: flex;
  flex-direction: column;
  width: 432px;
  margin: 60px 0px 200px;
}

.advisor-txt {
  margin-bottom: 40px;
  font-family: AvenirNextLTCom-Regular;
  font-size: 18px;
  line-height: 1.39;
  color: #333333;
}

.error-msg {
	width: 435px;
	color: #d91943;
	font-size: 18px;
	margin: 45px 0px 0px;
	margin-top: 45px;
	display: inline-block;
	font-family: AvenirNextLTW01-Regular;
	line-height: 1.4;
}

#fe-error {
  display: none;
}

.discWrap {
  padding: 100px 30px 30px 45px;
}

.discText {
  font-size: 14px;
  margin-bottom: 25px;
  font-family: "AvenirNextLTCom-Demi";
  line-height: "1.8";
  letter-spacing: 0;
  color: #000000;
}

.discText1 {
  font-size: 14px;
  margin-bottom: 25px;
  font-family: "AvenirNextLTCom-Regular";
  line-height: "1.8";
  letter-spacing: 0;
  color: #000000;
}

.model-display {
  display: none !important;
}
.modalWrapper {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto;
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4);
}

.modalContent {
  background-color: #ffffff;
  margin: 160px auto;
  padding: 20px;
  width: 625px;
}

.defaultDiv {
  padding: 25px 0px 10px 40px;
}

.closeIcon {
  float: right !important;
  font-size: 24px !important;
  font-weight: 700;
  color: #000 !important;
  cursor: pointer;
}

.title {
  font-family: AvenirNextLTCom-Regular;
  font-size: 50px;
  width: 426px;
  line-height: 1.32;
}

.subText {
  font-family: AvenirNextLTCom-Demi;
  font-size: 18px;
  line-height: 1.39;
  color: #333333;
  margin: 10px 0px 60px;
}

.text.gds-header__fly-out-content--column {
  justify-content: inherit;
  color: inherit
}

@media only screen and (max-width: 1299px) {
  .defauld-div {
    padding-left: 30px;
  }
  .login-title {
    width: 100%;
  }
  .discWrap {
    padding: 100px 30px 30px 20px;
  }
}

@media only screen and (max-width: 959px) {
  .defauld-div {
    padding-left: 30px;
  }
  .boardHeadCont {
    justify-content: unset;
    padding: 0 15px;
  }
  .left-side {
    padding-right: 0px;
  }
  .title {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .defauld-div {
    flex-direction: column;
    padding: 30px 0px 8px;
  }
  .right-side {
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
  }
  .left-side  {
    width: 100%;
    padding: 30px !important;
    box-sizing: border-box;
  }
  .text {
    font-size: 10px;
  }
  .login-title  {
    margin-top: 5px;
    font-size: 30px;
  }
  .sub-text {
    width: 100%;
    font-size: 14px;
  }
  .input-group {
    width: 100%;
  }
  .inputBox {
    width: 100%;
  }
  .bar {
    width: 100%;
  }
  .select-role {
    margin: 30px 0px 10px;
  }
  .role-button {
    width: 158px;
    height: 60px;
  }
  .advisor-wrapper {
    width: 100%;
    margin: 45px 0px;
  }
  .advisor-txt {
    width: 100%;
    font-size: 14px;
  }
  .error-msg {
    width: 100%;
    font-size: 14px;
  }
  .discWrap {
    padding: 30px !important;
  }
  .modalContent {
    padding-bottom: 30px;
    width: 85% !important;
    box-sizing: border-box;
  }
  .defaultDiv {
      padding: 0px;
  }
  .closeIcon {
      display: none;
  }
  .title {
      text-align: center;
      width: 100%;
      font-size: 30px;
      
  }
  .subText {
      margin-bottom: 30px;
      text-align: center;
      width: 100%;
      font-size: 14px;
  }
  .modal-loginBtn {
    margin: 0 auto;
    text-align: center;
   }
}

