/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

*,
*::after *::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #fff;
  color: #20262e;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}
html {
  font-family: "Plus Jakarta Sans", sans-serif;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html,
body {
  height: 100%;
  margin: 0;
}
input {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Main CSS Start  */
.auth-body {
  display: flex;
}
.auth-widget {
  padding: 32px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  overflow-y: auto;
  position: relative;
}
.auth-logo {
  display: inline-block;
  border-radius: 12px;
  background: #e6f4fd;
  padding: 5px;
}
.auth-logo img {
  max-width: 170px;
  height: 55px;
  object-fit: contain;
}

.auth-widget.left {
  text-align: center;
}
.auth-text h4 {
  color: #fbfeff;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-weight: 600;
  line-height: 118%;
  margin: 0;
  margin-bottom: 6px;
}

.auth-text span {
  color: #c1d0e5;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  font-weight: 600;
  line-height: 112%;
  letter-spacing: -0.35px;
  display: block;
}
.auth-text {
  margin-top: 24px;
}
.auth-img {
  margin-top: 24px;
}
.auth-img img {
  width: 100%;
}
.auth-copyright {
  margin: 0;
  color: #c1d0e5;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* Slider */
.auth-slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  margin: auto;
}

.auth-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  cursor: grab;
}

.auth-slider-item {
  flex: 0 0 100%;
  box-sizing: border-box;
  text-align: center;
}

/* Dots */
.auth-slider-dots {
  text-align: center;
  margin-top: 8px;
}

.auth-slider-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  background: #0a91e8;
  opacity: 0.4;
}
.auth-slider-dots .active {
  background: #0a91e8;
  opacity: 1;
}

@media only screen and (max-width: 1600px) {
  .auth-copyright {
    bottom: 20px;
  }
}

.login-container {
  background: white;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width:400px;
  box-shadow: 0px 4px 7px -1px rgba(17, 17, 17, 0.1),
    0px 2px 4px -2px rgba(17, 17, 17, 0.05);
}
.back-to-login {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #152b3a;
  font-size: 14px;
  font-weight: 500;
  line-height: 112%;
  letter-spacing: -0.35px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}
.back-to-login svg path {
  transition: all 0.3s ease;
}
.back-to-login:hover {
  color: #0a91e8;
}
.back-to-login:hover svg path {
  fill: #0a91e8;
}
.login-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
  margin-bottom: 32px;
}
.login-text {
  overflow: hidden;
  color: #58677d;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
  margin-bottom: 24px;
}
.reset-container .login-title {
  margin: 0;
  margin-bottom: 20px;
}
.user-type-tabs {
  display: flex;
  background: #f5f5f5;
  border-radius: 32px;
  padding: 4px;
  margin-bottom: 32px;
}
.login-container .tab {
  flex: 1;
  padding: 6px 12px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  border-radius: 32px;
}
.login-container .tab.active {
  background: #0a91e8;
  color: white;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.login-container .tab:not(.active) {
  color: #666;
}

.login-container .tab:not(.active):hover {
  background: #e0e0e0;
}

.auth-widget-form {
  width: 100%;
}

.auth-widget-form .form-group {
  margin-bottom: 16px;
}

.auth-widget-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.auth-widget-form .form-group-input {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-widget-form .form-group-input svg {
  position: absolute;
  left: 16px;
  z-index: 2;
  pointer-events: none;
}

.auth-widget-form .form-group-input input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: #fafafa;
}
.auth-widget-form .form-group-input input:focus {
  outline: none;
  border-color: #0a91e8;
  background: white;
}

.auth-widget-form .form-group-input input::placeholder {
  color: #aaa;
}

.auth-widget-form .password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0a91e8;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.auth-widget-form .password-toggle:hover {
  background: rgba(33, 150, 243, 0.1);
}
.auth-widget-form .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.auth-widget-form .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.auth-widget-form .checkbox {
  width: 14px;
  height: 14px;
  border: 2px solid #ddd;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-widget-form .checkbox.checked {
  background: #0a91e8;
  border-color: #0a91e8;
}

.auth-widget-form .checkbox.checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.auth-widget-form .forgot-password {
  color: #0a91e8;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.auth-widget-form .forgot-password:hover {
  color: #1976d2;
  text-decoration: underline;
}

.auth-widget-form .auth-widget-btn {
  margin-bottom: 24px;
}
.login-container.reset-container.verify .auth-widget-btn {
  margin: 0;
  margin-top: 24px;
}

.login-container.reset-container.verify .auth-widget-btn {
  margin: 0;
  margin-top: 24px;
}
.login-container.reset-container.verify .primary-btn {
  border-radius: 8px;
  border: 1px solid #c1d0e5;
  color: #374151;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  background: transparent;
}
.return-login-btn {
  display: block;
  color: #4b586b;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  margin-top: 16px;
}
.check-email-text {
  text-align: center;
  margin-top: 24px;
}
.check-email-text p {
  color: #58677d;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  margin-top: 8px;
}
.check-email-text h3 {
  color: #152b3a;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
  margin-top: 8px;
}
.note-text {
  border-radius: 16px;
  background: #f9fafb;
  padding: 12px 16px;
  color: #4b5563;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin-top: 24px;
}
.primary-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
  padding: 14px;
  background: #0a91e8;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.primary-btn:hover {
  background: #1976d2;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}
.primary-btn:active {
  transform: translateY(0);
}
.auth-form-text {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 0;
}
.auth-widget-body.right {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 480px) {
  .login-container {
    padding: 24px;
  }
  .login-title {
    font-size: 24px;
  }
  .login-container .tab {
    padding: 10px 12px;
    font-size: 14px;
  }
  .form-footer {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 991px) {
  .auth-body {
    display: flex;
    overflow: hidden;
    flex-direction: column-reverse;
  }
  .auth-widget {
    display: block;
    padding: 15px;
    min-height: 100%;
    width: 100%;
    overflow-x: initial;
    overflow-y: initial;
  }

  .auth-logo img {
    max-width: 124px;
    height: 45px;
  }
  .auth-logo {
    padding: 5px;
  }
  .login-title {
    font-size: 24px;
  }
  .login-container .tab {
    padding: 8px 12px;
  }
  .login-container {
    max-width: 95%;
  }
  .auth-widget-form .form-group {
    margin-bottom: 16px;
  }
  .primary-btn {
    padding: 12px;
    font-size: 16px;
  }
  .auth-widget-form .form-footer {
    margin-bottom: 24px;
  }
  .auth-widget-form .auth-widget-btn {
    margin-bottom: 16px;
  }
  .auth-copyright {
    position: initial;
    text-align: center;
    transform: none;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .auth-widget {
    width: 100%;
  }
}
