:root {
  --primary-purple: #4C48F4;
  --purple-gradient-start: #8b5cf6;
  --purple-gradient-end: #3b82f6;
  --text-gray: #8C8C8C;
  --text-dark: #2A2A2A;
  --text-light: #C4CFF8;
  --text-white: #ffffff;
  --border-gray: #e5e7eb;
  --success-green: #00D86D;
  --error-red: #FF3A3A;
  --captcha-bg: #4C48F414;
  --error-msg: #E13D3D;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif !important;
  background: #f8fafc;
  min-height: 100vh;
  overflow-x: hidden;
}

.login-container {
  min-height: 100vh;
  display: flex;
}

/* Left Panel - Dashboard Preview */
.left-panel {
  background: linear-gradient(180deg, #5070EB 0%, #263FA4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.warning-section {
    margin-top: 20px;
    border: 1px solid #E13D3D;
    border-radius: 4px;
    padding: 16px 20px;
    background-color: rgba(225, 61, 61, 0.05);
}

    .warning-section span {
        font-weight: 500;
        font-weight: 14px;
        color: rgb(225, 61, 61);
        margin-bottom: 5px;
        display: inline-block;
    }

    .warning-section p {
        margin-bottom: 0;
        color: rgb(140, 140, 140);
    }


.dot-l {
  position: absolute;
  left: 5%;
  top: 10%;
}

.dot-r {
  position: absolute;
  right: 5%;
  bottom: 30%;
}

.ellipse1 {
  position: absolute;
  right: 0;
  top: 0;
}

.ellipse2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

/* Right Panel - Login Form */
.right-panel {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
}

.login-form-container {
  width: 100%;
  max-width: 400px;
}

.logo-section {
  text-align: center;
  margin-bottom: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.welcome-text {
  text-align: center;
  margin-bottom: 1rem;
}

.welcome-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}

.welcome-subtitle {
  color: var(--text-gray);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  padding: 0rem 2rem;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-label {
  display: block;
  font-weight: 400;
  color: var(--text-dark);
  font-size: 0.875rem;
  margin-bottom: 0.2rem !important;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 4px !important;
    font-size: 0.875rem !important;
    transition: all 0.2s ease;
    background: #fff;
    font-weight: 500 !important;
    height: 2.3rem;
    margin-bottom: 0.2rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group.error .form-control {
    outline: none;
    border-color: var(--error-msg) !important;
    color: var(--error-msg);
    border-radius: 4px !important;
}

.forgot-password {
  text-align: right;
  margin-bottom: 0.8rem;
}

.forgot-password a {
  color: var(--primary-purple);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.toggle-password i {
  color: var(--text-dark);
}

.error-lbl {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.875rem;
  color: var(--error-msg);
  /*display: none;*/
}

.captcha-container {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.captcha-code {
  display: flex;
  flex: 0 0 49%;
}

.captcha-display {
    background: #f3f4f6;
    border: 1px solid var(--border-gray);
    border-radius: 4px 0 0 4px;
    padding: 0.5rem 0.75rem;
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 2px;
    min-width: 100px;
    text-align: center;
    flex: 1;
}

.captcha-container input::-moz-placeholder {
  color: var(--text-gray);
}

.captcha-container input::placeholder {
  color: var(--text-gray);
}

.captcha-refresh {
  background: var(--captcha-bg);
  border: 1px solid var(--border-gray);
  border-left: 0;
  color: var(--purple-gradient-end);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0 6px 6px 0;
  transition: color 0.2s ease;
  width: 50px;
}

.captcha-refresh:hover {
  color: var(--primary-purple);
}

.toggle-password {
  position: absolute;
  background-color: rgba(240, 248, 255, 0);
  border: 0px;
  right: 16px;
  top: 32px;
  color: var(--text-gray);
}

.login-btn {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    font-size: 0.94rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
    margin-top: 1.3rem;
    text-transform: capitalize;
}

.cancel-btn {
  width: 100%;
  background: #fff;
  color: var(--primary-purple);
  border: 1px solid var(--primary-purple);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.action-btns {
  display: flex;
  gap: 1rem;
}

.signup-link {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 400;
}

.signup-link a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
  text-decoration: underline;
}

.signup-link a:hover {
  text-decoration: underline;
}

.divider {
  text-align: center;
  margin: 1.1rem 0;
  position: relative;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-gray);
  z-index: 1;
}

.divider span {
  background: white;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.875rem;
}

.social-login {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--text-gray);
  font-size: 1.25rem;
}

/* Password Requirements */
.password-requirements {
  background: #F5F5F5;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.1rem;
  margin-top: 1.3rem;
}

.requirements-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.requirement-item.last-item {
  margin-bottom: 0;
}

.requirement-text {
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.requirement-icon {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.requirement-icon.valid {
  background: var(--success-green);
}

.requirement-icon.invalid {
  background: var(--error-red);
}

.requirement-icon i {
  padding: 1px;
  font-size: 8px;
  display: flex;
  place-items: center;
  color: #fff;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: unset;
}

/*verification*/
.verification-box {
  display: flex;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 400px;
}
.verification-box input {
  text-align: center;
  font-size: 18px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid rgba(148, 148, 148, 0.212);
  border-radius: 4px;
  width: 100%;
}

.form-group input {
  height: 40px;
}

.resend {
  text-align: right;
}

.resend a {
  color: var(--primary-purple);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.next-btn {
  opacity: 0.5;
}

/* Responsive Design */
@media (min-width: 768px) and (max-width: 1007px) {
  .slide-content {
    padding: 1.25rem 1.5625rem 0rem;
  }
}
@media (max-width: 767px) {
  .login-container {
    flex-direction: column-reverse;
  }
  .left-panel {
    padding: 3rem;
  }
  .right-panel {
    padding: 3rem;
  }
  .slide-content {
    padding: 1.25rem 2.5rem 0rem;
  }
  .dots {
    margin: 0.1rem 0;
  }
}
@media (max-width: 576px) {
  .right-panel,
  .left-panel {
    padding: 3rem 1.5rem;
  }
  .captcha-display {
    text-align: center;
  }
  .social-login {
    gap: 0.75rem;
  }
  .social-btn {
    width: 44px;
    height: 44px;
  }
  .slide-content {
    padding: 1.25rem 0rem 0rem;
  }
  .login-form-container {
    width: 100%;
    max-width: 100%;
  }
}
.right-panel .icon-wrap {
  padding-top: 15px;
  padding-bottom: 15px;
}
.right-panel .icon-wrap img {
  display: block;
  margin: 0 auto;
}
.right-panel .text-grey {
  color: #8C8C8C;
}

.success-svg svg {
  display: block;
  margin: 50px auto;
  overflow: visible;
}
.success-svg #green-round {
  transform-origin: center;
  transform-box: fill-box;
  scale: 0;
  transition: scale 0.3s ease-out;
}
.success-svg #tick {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.3s ease-out 0.3s;
}
.success-svg .dot,
.success-svg .ribbon {
  transform-origin: center;
  transform-box: fill-box;
  transition: transform 0.35s ease-out, opacity 0.3s ease-out;
}
.success-svg .ripple {
  fill: none;
  stroke-width: 20px;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
}
.success-svg .ripple.r1 {
  --target-opacity: 0.4;
  stroke: #2FBC6C;
}
.success-svg .ripple.r2 {
  --target-opacity: 0.2;
  stroke: #2FBC6C;
}

.fw-medium {
  font-weight: 500;
}

.right-panel p {
  font-size: 14px;
}

.slider-wrapper .slider-container {
  position: relative;
  overflow: hidden;
  width: 500px;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .slider-wrapper .slider-container {
    width: 400px;
  }
}
@media screen and (max-width: 991px) {
  .slider-wrapper .slider-container {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .slider-wrapper .slider-container {
    width: 500px;
  }
}
@media screen and (max-width: 575px) {
  .slider-wrapper .slider-container {
    width: calc(100vw - 15px);
  }
}
.slider-wrapper .slider-container .slide-image {
  max-width: 500px;
  max-height: 355px;
  min-width: 500px;
  min-height: 355px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 1199px) {
  .slider-wrapper .slider-container .slide-image {
    max-width: unset;
    min-width: unset;
    max-height: 250px;
    min-height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .slider-wrapper .slider-container .slide-image {
    min-height: unset;
    max-height: unset;
  }
}
.slider-wrapper .slider-container .slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}
.slider-wrapper .slider-container .slide.active {
  opacity: 1;
  z-index: 1;
}
.slider-wrapper .slider-container .slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .slider-wrapper .slider-container .slide img {
    width: calc(100% - 50px);
    margin: 0 auto;
    display: block;
  }
}
.slider-wrapper .slider-container::after {
  content: "";
  display: block;
  padding-bottom: 96%;
}
@media screen and (max-width: 991px) {
  .slider-wrapper .slider-container::after {
    padding-bottom: 108%;
  }
}
@media screen and (max-width: 767px) {
  .slider-wrapper .slider-container::after {
    padding-bottom: 96%;
  }
}
.slider-wrapper .slider-container .slide-content {
  text-align: center;
  padding-top: 25px;
  max-width: 360px;
  margin: 0 auto;
}
.slider-wrapper .slider-container .slide-content h2 {
  font-size: 0.875rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-white);
}
.slider-wrapper .slider-container .slide-content p {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 0;
}
.slider-wrapper .slider-container .dots {
  text-align: center;
  margin: 1rem 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 399px) {
  .slider-wrapper .slider-container .dots {
    bottom: -15px;
  }
}
.slider-wrapper .slider-container .dots .dot {
  height: 6px;
  width: 6px;
  margin: 0px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s all ease;
  opacity: 0.4;
}
.slider-wrapper .slider-container .dots .dot.active {
  width: 1.5rem;
  border-radius: 6px;
  opacity: 1;
}
.slider-wrapper .dot-left {
  left: -50px;
  top: -50px;
}
.slider-wrapper .dot-right {
  bottom: 100px;
  right: -60px;
}

.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}
.form-check-input {
    height: 1em !important
}
input[type=password]::-ms-reveal {
    display: none;
}

input[type=password]::-ms-clear {
    display: none;
}

input[type=password].password {
    -webkit-text-security: "*" !important;
}
input[type="checkbox"] {
    cursor: pointer;
}
.logo-section .logo img {
    max-width: 275px;
}
/*# sourceMappingURL=style.css.map */