.login-container {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.login-left {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.login-left-content {
  max-width: 500px;
  width: 100%;
  text-align: center;
}
.login-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 66px;
  justify-content: center;
}
.login-logo-img {
  margin-right: 1rem;
  /* width: 55px;
  height: 65px; */
}
.login-title {
  font-weight: 700;
  font-size: 32px;
  margin: 0;
}
.login-title-black {
  color: #000;
}
.login-title-blue {
  color: #1976d2;
}
.login-image-wrapper {
  display: flex;
  justify-content: center;
}
.login-main-image {
  object-fit: contain;
}
.login-right {
  flex: 1;
  background: #1976d2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  position: relative;
}
.login-form-wrapper {
  width: 100%;
  max-width: 400px;
  padding: 30px 5px;
}
.login-form-title {
  color: #fff;
  font-weight: 700;
  text-align: left;
  margin-left: 35px;
}
.login-form-fields {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
.login-form-field {
  width: 100%;
}
.login-password-field {
  position: relative;
}
.login-password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background: transparent;
}
.login-input {
  width: 100%;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 14px;
  border: 1px solid #fff;
  font-weight: 400;
  box-shadow: none;
  outline: none;
  margin-bottom: 0;
  height: 40px;
}
.login-password-field .login-input {
  padding-right: 38px;
}
.login-btn {
  border-radius: 20px;
  margin-top: 10px;
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 1.5px solid #fff;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.login-btn:disabled {
  background: #ffe082;
  cursor: not-allowed;
}
.login-mobile-logo-row {
  display: none;
}
.forgot-password-link {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.forgot-password-link:hover {
  color: #ffd600;
  text-decoration: none;
}
@media (max-width: 1000px) {
  .login-left-content {
    max-width: 350px;
  }
  .login-main-image {
    width: 300px !important;
    height: 200px !important;
  }
  .input {
    border: 1.5px solid #939393 !important;
    color: #000000 !important;
    background: #ffffff;
  }
  .input::placeholder {
    color: #939393;
    opacity: 1;
  }
}
@media (max-width: 700px) {
  .login-container {
    flex-direction: column;
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
  }
  .login-left {
    display: none !important;
  }
  .login-right {
    width: 100vw;
    min-height: 100vh;
    background: #fff;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .login-mobile-logo-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    margin-top: 160px;
  }
  .login-logo-img {
    margin-right: 30px;
    width: 10px;
    height: auto;
  }
  .login-title {
    font-size: 28px;
  }
  .login-form-title {
    font-size: 15px;
    margin-bottom: 15px;
    color: #252525;
    font-weight: 600;
  }
  .input {
    border: 1.5px solid #939393 !important;
    color: #000000 !important;
    background: #ffffff;
  }
  .input::placeholder {
    color: #939393;
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .login-title {
    font-size: 18px;
  }
  .login-logo-img {
    width: 36px !important;
    height: 44px !important;
  }
  .input {
    border: 1.5px solid #939393 !important;
    color: #000000 !important;
    background: #ffffff;
  }
  .input::placeholder {
    color: #939393;
    opacity: 1;
  }
}
