/* 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.optimo-login-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f5f5f7;
}

.optimo-header {
  background: linear-gradient(90deg, rgb(4, 64, 94) 0%, rgb(19, 207, 214) 100%);
  border-bottom: 1px solid #e5e5e7;
  padding: 0.3rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.optimo-logo {
  height: 60px;
  width: auto;
}

.logo-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-subtext {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.optimo-main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.login-container {
  width: 100%;
  max-width: 30%;
}

.login-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.login-box-inner {
  padding: 2.5rem 2rem;
}

.login-title {
    font-size: 40px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-subtitle {
  font-size: 0.9375rem;
  color: #86868b;
  text-align: center;
  margin-bottom: 2rem;
}

.alert-messages {
  margin-bottom: 1.5rem;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.alert-error,
.alert-danger {
  background-color: #fef2f2;
  color: #ffffff;
  border: 1px solid #fecaca;
}

.alert-warning {
  background-color: #fffbeb;
  color: #fffbeb;
  border: 1px solid #fed7aa;
}

.alert-success {
  background-color: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: #1d1d1f;
  background-color: #ffffff;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  transition: all 0.2s ease;
  outline: none;
}

.form-control:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-control::placeholder {
  color: #86868b;
}

.password-input-group {
  position: relative;
}

.password-input-group .form-control {
  padding-right: 2.75rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #86868b;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: #1d1d1f;
}

.password-toggle i {
  font-size: 1rem;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-check-input {
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.5rem;
  border: 1px solid #d2d2d7;
  border-radius: 4px;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: #0071e3;
  border-color: #0071e3;
}

.form-check-label {
  font-size: 0.875rem;
  color: #1d1d1f;
  cursor: pointer;
  user-select: none;
}

.btn-login {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
  background-color: rgb(4 63 94);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
}

.btn-login:hover:not(:disabled) {
  background-color: rgb(4 63 94);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.25);
}

.btn-login:active {
  transform: translateY(0);
}

.btn-login:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sso-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
}

.sso-divider::before,
.sso-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e5e5e7;
}

.sso-divider span {
  padding: 0 1rem;
  color: #86868b;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-microsoft-sso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 8px;
  color: #3c4043;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-microsoft-sso:hover {
  background-color: #f8f9fa;
  border-color: #d2e3fc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #3c4043;
}

.btn-microsoft-sso svg {
  flex-shrink: 0;
}

.login-footer-links {
  text-align: center;
}

.forgot-link {
  font-size: 0.875rem;
  color: #0071e3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.forgot-link:hover {
  color: #0077ed;
  text-decoration: underline;
}

.optimo-footer {
  background: rgb(4 63 94);
  border-top: 1px solid #e5e5e7;
  padding: 1rem 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 8px;
  transition: box-shadow 0.2s;
  box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

.footer-left .footer-logo + .footer-logo {
  position: relative;
}
.footer-left .footer-logo + .footer-logo::before {
  content: "";
  display: block;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 32px;
  background: #222;
  border-radius: 9px;
  opacity: 0.7;
}

.footer-logo.landmark-logo {
  background-color: #fff !important;
  padding: 5px 10px !important;
  border-radius: 8px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  height: 52px;
  max-width: 120px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-link {
  color: #86868b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #1d1d1f;
}

.separator {
  color: #d2d2d7;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .optimo-header {
    padding: 0.75rem 0;
  }
  
  .header-content,
  .footer-content {
    padding: 0 1rem;
  }
  
  .optimo-main-content {
    padding: 2rem 1rem;
  }
  
  .login-box-inner {
    padding: 2rem 1.5rem;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .login-box-inner {
    padding: 1.5rem 1rem;
  }
  
  .login-title {
    font-size: 1.375rem;
  }
  
  .login-subtitle {
    font-size: 0.875rem;
  }
  
  .form-control {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
  }
  
  .btn-login {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

*:focus-visible {
  outline: 2px solid #0071e3;
  outline-offset: 2px;
}

button:focus-visible {
  outline-offset: 0;
}

@media print {
  .optimo-header,
  .optimo-footer {
    display: none;
  }
  
  .optimo-main-content {
    padding: 0;
  }
  
  .login-box {
    box-shadow: none;
    border: 1px solid #d2d2d7;
  }
} */


html,
body {
  width: 100%;
  height: 100%;
}


ul,
li {
  margin: 0px;
  list-style-type: none;
}

/* input[type="text"],
input[type="password"] {
  color: #fff !important;
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 20px;
  height: 43px;
  padding: 15px;
  letter-spacing: 1px;

} */

input[type="password"],
input#c_password_reset,
input#password_reset {
  padding-right: 40px !important;
}


.pwd-hide-show,
.confirm-pwd-hide-show,
.otp-pwd-hide-show,
.reset-pwd-hide-show {
  position: absolute;
  right: 15px;
  top: 8px;
  font-size: 18px;
  display: none;
}

.pwd-hide-show span,
.confirm-pwd-hide-show,
.otp-pwd-hide-show,
.reset-pwd-hide-show {
  cursor: pointer;
  color: #fff;
}



.login-box {
  width: 400px;
  background: #fff;
  border-radius: 5px;
  padding: 25px !important;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.validate-input {
  position: relative;
}

.validate-input>label {
  position: absolute;
  bottom: -20px;
  font-size: 12px;
  background: transparent !important;
}



canvas {
  display: block;
}


/* ---- stats.js ---- */
#particles-js {
  width: 100%;
  height: 100%;
  background: url(/nlq/common/web/img/bg-1.jpg) no-repeat center center;
}


input::-webkit-input-placeholder {
  color: #fff;
}

input:-moz-placeholder {
  color: #fff;
}

input::-moz-placeholder {
  color: #fff;
}

input:-ms-input-placeholder {
  color: #fff;
}

label {
  margin: 0;
  display: block;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}


/*//////////////////////////////////////////////////////////////////
  [ login ]*/
.container-login100 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgb(4, 47, 111, 0.4), rgba(105, 49, 242, 0.92), rgb(5, 55, 132));
}


.container-login100 .wrap-login100 {
  max-width: 50%;
  flex: 0 0 50%;
}

.container-login100 .wrap-login100 #loginform,
#forgot_pass_form,
#reset_pass_form {
  width: 60%;
  overflow: hidden;
  padding: 50px;
}


.container-login100 .wrap-login100 #loginform input::placeholder,
#forgot_pass_form input::placeholder,
#reset_pass_form input::placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;

}

.container-login100 .wrap-login100 #loginform input:-ms-input-placeholder,
#forgot_pass_form input:-ms-input-placeholder,
#reset_pass_form input::placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;

}

.container-login100 .wrap-login100 #loginform input::-ms-input-placeholder,
#forgot_pass_form input::-ms-input-placeholder,
#reset_pass_form input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.70);
  opacity: 1;

}

.login-seperator {
  /* background-color: rgba(255, 255, 255, 0.20); */
  height: 450px;
  width: 1px;
  margin: auto;
}

.login-main {
    /* min-height: calc(-300px + 100vh);
    display: flex;
    align-items: center; */
    max-width: 1320px;
    background-color: rgb(10 55 138 / 62%);
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #5554b5;
    border-image: initial;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    overflow: hidden;
}

@media (max-width: 575px) {
  .login-main {
    background-color: inherit;
  } 
}


.error {
  color: #ffadd3 !important;
}
.signup-container {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 60px;
    width: 100%;
    background: transparent;
    overflow: hidden;
    margin: auto;
}

.left-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(135deg, rgb(67, 56, 202) 0%, rgb(91, 76, 255) 50%, rgb(124, 58, 237) 100%);
    /* background: linear-gradient(135deg, #F44336 0%, rgb(112 30 171) 50%, rgb(1 104 250) 100%); */
    padding: 60px 50px;
    overflow: hidden;
}

.right-section {
    width: 100%;
    height: 100%;
    padding: 50px;
    background: white;
}

.geometric-pattern {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}
.signup-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e73b2b;
}
.signup-subtitle {
    color: rgb(107, 114, 128);
    margin-bottom: 30px;
    font-size: 14px;
}
.dashboard-mockup {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    max-width: 450px;
    max-height: 450px;
    background: white;
    border-radius: 15px;
    padding: 10px;
    overflow: hidden;
}
.chart-placeholder {
    width: 100%;
    /* height: 300px; */
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgb(243, 244, 246) 0%, rgb(229, 231, 235) 100%);
    border-radius: 10px;
    overflow: hidden;
}
.mockup-header {
    display: flex;
    margin-bottom: 10px;
    gap: 5px;
}
.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(229, 231, 235);
}

/*------------------------------------------------------------------
  [ Form ]*/

.login100-form {
  width: 100%;
}




.login100-form-title {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
  display: block;
  text-align: left;
}


/*------------------------------------------------------------------
  [ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  /* border-bottom: 2px solid rgba(255, 255, 255, 0.24); */
  margin-bottom: 30px;

}

.input100:focus+.focus-input100::before {
  width: 100%;
}

.has-val.input100+.focus-input100::before {
  width: 100%;
}

.has-val.input100 {
  padding-left: 5px;
}


/*==================================================================
  [ Restyle Checkbox ]*/


/*------------------------------------------------------------------
  [ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  /* font-family: poppins; */
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  color: #fff;
  padding: 10px 40px;
}

.login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.60);
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}


.login100-form-btn:hover {
  color: #000;
}

.login100-form-btn:hover:before {
  /* opacity: 0; */
  background: #fff;
}


.loginFormTitle {
  text-align: center;
  font-size: 18px;
  color: #fff;
  /* font-family: 'poppins'; */
}


.login-form-container {
  margin: 50px 0;
}

.reset-form-container {
  margin: 50px 0;
}

.sciqikLoginContainer {
  display: flex;
  align-items: center;
}


/* Forgot Password Screen Start */

.forgotPasswordContainer {
  justify-content: center;
}

.forgotPasswordWrp {
  width: 50%;
  display: flex;
  justify-content: center;
}

.forgotPasswordContainer a,
.login-form-container a {
  color: rgba(255, 255, 255, 0.7);
}


.forgotPasswordContainer a:hover,
.login-form-container a:hover {
  color: rgba(255, 255, 255, 1.0);
}

/* Forgot Password screen End */


ul.messages {
  padding: 0 0 15px 0;
  color: rgba(255, 255, 255, 0.7);
}

.login-tx-link {
  color: #ffffff6b;
}

.login-tx-link:hover {
  color: #fff;
}

.bottom-left-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.sci-log.divider-text::before, 
.sci-log.divider-text::after {
  background-color: #e5e9f254;
}



@media (max-width: 1366px) {
  .login-left-img {
    padding: 80px;
    padding-bottom: 20px;
  }
 .corner-items.btm-left {
    bottom: 40px;
} 
}

input[type="password"]::-ms-reveal {
  display: none;
}


/*#########################################################################################################################
                                            Mobile CSS Start
##########################################################################################################################*/

@media (max-width: 575.98px) {

  .wrap-login100 {
    padding: 55px 15px 37px 15px;
  }

  .loginContainerSection {
    display: none;
  }

  .login-seperator {
    display: none;
  }

  .container-login100 .wrap-login100 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .container-login100 .wrap-login100 #loginform,
  #forgot_pass_form,
  #reset_pass_form {
    width: 100%;
    padding: 0px;
  }

  .login-form-container {
    margin: 30px 0;
  }

  .loginFormTitle {
    font-size: 17px;
  }

  .container-login100 {
    padding: 20px;
    overflow: auto;
  }

  .scikiqLogoWrp {
    display: none;
  }

  .corner-items.top-right {
    right: inherit;
    width: 100%;
    text-align: center;
  }

  .top-left-item {
    text-align: center;
  }

  .top-right-item {
    text-align: center;
    margin-bottom: 20px;
  }

  .bottom-left-item {
    text-align: center;
  }


}

/*#########################################################################################################################
                                            Mobile CSS End
##########################################################################################################################*/



/*#########################################################################################################################
                                              MEDIA QUERY START 576px onwards
#########################################################################################################################*/

@media (min-width: 576px) {

  .container-login100 .loginContainerSection p,
  .loginFormTitle {
    font-size: 14px;
    line-height: 0px;
  }

  .container-login100 .wrap-login100 #loginform,
  #forgot_pass_form,
  #reset_pass_form {
    min-width: 450px;
  }

  .login-left-content {
    min-width: 450px;
    margin-left: 30%;
  }
  

}

/*#########################################################################################################################
                                            MEDIA QUERY END 576px onwards
############################################################################################################################*/







.content__container {
  font-weight: 600;
  overflow: hidden;
  height: 38px;
  padding: 0 0 0 5px;
  position: relative;
}

.content__container:after, .content__container:before {
  position: absolute;
  top: 0;
  color: #fff;
  font-size: 42px;
  line-height: 60px;
  -webkit-animation-name: opacity;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: opacity;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
.content__container__text {
  display: inline;
  float: left;
  margin: 0;
}
.content__container__list {
  margin-top: 0;
  padding-left: 0px;
  text-align: center;
  list-style: none;
  -webkit-animation-name: change;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-name: change;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}
.content__container__list__item {
  line-height: 38px;
  margin: 0;
  text-align: left;
}

@-webkit-keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes change {
  0%, 12.66%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  16.66%, 29.32% {
    -webkit-transform: translate3d(0, -25%, 0);
            transform: translate3d(0, -25%, 0);
  }
  33.32%,45.98% {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }
  49.98%,62.64% {
    -webkit-transform: translate3d(0, -75%, 0);
            transform: translate3d(0, -75%, 0);
  }
  66.64%,79.3% {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }
  83.3%,95.96% {
    -webkit-transform: translate3d(0, -25%, 0);
            transform: translate3d(0, -25%, 0);
  }
}
@keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes change {
  0%, 12.66%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  16.66%, 29.32% {
    -webkit-transform: translate3d(0, -25%, 0);
            transform: translate3d(0, -25%, 0);
  }
  33.32%,45.98% {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }
  49.98%,62.64% {
    -webkit-transform: translate3d(0, -75%, 0);
            transform: translate3d(0, -75%, 0);
  }
  66.64%,79.3% {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }
  83.3%,95.96% {
    -webkit-transform: translate3d(0, -25%, 0);
            transform: translate3d(0, -25%, 0);
  }
}
