* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url("../img/dealerLogin/Sign.png") no-repeat center center fixed !important;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(0);
}

.sign-container {
  width: 496px;
  height: 616px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  border-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0)
    )
    2 2;
  backdrop-filter: blur(8px);
  padding: 56px 48px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.sign-container h2 {
  height: 48px;
  font-family: MiSansVF_Bold;
  font-size: 36px;
  color: #333333;
  line-height: 48px;
  font-style: normal;
  text-align: center;
  margin-bottom: 32px;
}

.sign-form-group {
  margin-bottom: 20px;
}

.sign-form-group label {
  display: block;
  margin-bottom: 10px;
  height: 22px;
  font-family: MiSansVF;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  text-align: left;
  font-style: normal;
}

.form-control {
  width: 100%;
  padding: 16px 24px;
  height: 54px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #dddddd;
  font-family: MiSansVF;
  font-size: 16px;
  color: #a8a8a8;
  line-height: 22px;
  text-align: left;
  font-style: normal;
}

.form-control:focus {
  outline: none;
  border: 1px solid #21a13b;
  color: #333333;
  box-shadow: none;
}

.verify-group {
  display: flex;
  gap: 12px;
}

.verify-group input {
  flex: 1;
}

.btn-send {
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #dddddd;
  font-family: MiSansVF;
  font-size: 16px;
  color: #21a13b;
  line-height: 22px;
  text-align: center;
  font-style: normal;
  cursor: pointer;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
  font-size: 14px;
  z-index: 10;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle img {
  width: 100%;
  height: auto;
  display: inline-block;
  max-height: 20px;
  object-fit: contain;
  vertical-align: middle;
}
.sms-code {
  width: 148px;
  height: 54px;
}
.sms-code img {
  width: 100%;
  object-fit: contain;
}
.submit-btn {
  width: 100%;
  height: 56px;
  background: #21a13b;
  border-radius: 8px;
  font-family: MiSansVF_Bold;
  font-size: 18px;
  color: #ffffff;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  border: none;
  cursor: pointer;
  margin-top: 24px;
}

.submit-btn:hover {
  background: #45a049;
}

.back-link {
  display: block;
  margin-top: 24px;
  text-decoration: none;
  font-family: MiSansVF;
  font-size: 16px;
  color: #666666;
  line-height: 22px;
  text-align: center;
  font-style: normal;
}

.back-link:hover {
  color: #4caf50;
  text-decoration: underline;
}
.forget-pwd {
  height: 22px;
  font-family: MiSansVF;
  font-size: 16px;
  color: #21a13b;
  line-height: 22px;
  text-align: right;
  font-style: normal;
  width: 100%;
  margin-top: -4px;
  cursor: pointer;
}
.toast-center {
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  background-color: #fdf6ec;
  border-color: #faecd8;
  color: #e6a23c;
  text-align: center;
  border-radius: 6px;
}
.toast-center-success {
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  background-color: #f0f9eb;
  border-color: #e1f3d8;
  color: #67c23a;
  text-align: center;
  border-radius: 6px;
}
.toast-center-fail {
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  background-color: #fef0f0;
  border-color: #fde2e2;
  color: #f56c6c;
  text-align: center;
  border-radius: 6px;
}


@media (max-width: 768px) {
  .sign-container {
    width: 90%;
    max-width: 420px;
    height: auto;
    padding: 20px;
    border-radius: 16px;
    border-width: 1px;
    backdrop-filter: blur(6px);
    margin-top: 40px;
  }

  .sign-container h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .sign-form-group {
    margin-bottom: 14px;
  }

  .sign-form-group label {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .form-control {
    padding: 12px 16px;
    font-size: 14px;
    height: 46px;
  }

  .btn-send {
    padding: 12px 14px;
    font-size: 13px;
  }

  .password-toggle {
    right: 14px;
    font-size: 13px;
    width: 16px;
  }

  .submit-btn {
    font-size: 16px;
    height: 46px;
  }

  .back-link {
    margin-top: 16px;
    font-size: 13px;
  }
  .sms-code {
    width: 126px;
    height: 46px;
  }
}
