
/*LOGIN Begin*/

/*code*/
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px;
}

.logo-icon {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #838280;
  margin: 0;
}


.reset-title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-bottom: 16px;
}
.container-center {
  min-height: calc(100vh - 80px); /* 减去 logo 的高度 */
  display: flex;
  align-items: flex-start;  /* 改为顶部对齐 */
  justify-content: center;
  padding-top: 120px;  /* 添加顶部内边距来控制位置 */
}

.reset-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 40px;
  max-width: 480px;
  width: 100%;  /* 确保卡片在小屏幕上也能保持合适的宽度 */
  margin: 0 auto;  /* 水平居中 */
  margin-top: 6rem;
}
.reset-description {
  text-align: center;
  color: #6B7280;
  margin-bottom: 32px;
  font-size: 14px;
}

.btn-continue {
  background: #3B82F6;
  color: white;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  font-weight: 500;
  margin-top: 8px;
}

.btn-continue:hover {
  background: #2563EB;
  color: white;
}

.return-link {
  display: block;
  color: #3B82F6;
  text-decoration: none;
  margin-bottom: 24px;
  font-size: 14px;
}

.return-link:hover {
  text-decoration: underline;
}

.verification-inputs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.code-input {
  width: 50px;
  height: 50px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.code-input:focus {
  border-color: #3B82F6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.send-again {
  color: #3B82F6;
  text-decoration: none;
  font-size: 14px;
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.send-again:hover {
  text-decoration: underline;
}

.email-text {
  color: #6B7280;
  font-size: 14px;
  text-align: center;
  margin-bottom: 32px;
}
 /***sign up**/

.login-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 40px;
  max-width: 660px;
  margin: auto;
  margin-top: 10rem;
}

.login-title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.form-control {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  margin-bottom: 16px;
}

.form-select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  margin-bottom: 16px;
}

.btn-sign-up {
  background: #3B82F6;
  color: white;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 24px;
}

.btn-sign-up:hover {
  background: #2563EB;
  color: white;
}

.signin-text {
  font-weight: 700;
  color: #333;
}

.signin-link {
  color: #3B82F6;
  text-decoration: underline;
  font-weight: 700;
}

.policy-text {
  font-size: 14px;
  color: #6B7280;
  margin-top: 16px;
}

.policy-text a {
  color: #3B82F6;
  text-decoration: none;
}
.usage-container {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* 两端对齐 */
  padding: 12px 16px;  /* 与其他输入框保持一致的内边距 */
  margin-bottom: 16px;
  color: #111111;  /* 更新字体颜色 */
  border: 1px solid #E5E7EB;  /* 添加边框 */
  border-radius: 8px;  /* 圆角 */
}

.usage-label {
  white-space: nowrap;
}

.dropshipping-select {
  padding: 0;
  border: none;
  color: #111111;  /* 更新字体颜色 */
  background: transparent;
  cursor: pointer;
  appearance: auto;
  text-align: right;  /* 文字右对齐 */
}

.dropshipping-select:focus {
  outline: none;
  border: none;
}

/* 确保下拉选项也使用相同的颜色 */
.dropshipping-select option {
  color: #111111;
}

.policy-container {
  display: flex;
  align-items: flex-start;  /* 顶部对齐 */
  gap: 8px;  /* 复选框和文本之间的间距 */
  margin-bottom: 16px;
}

.policy-checkbox {
  margin-top: 4px;  /* 微调复选框位置，使其与文本第一行对齐 */
}

.policy-text {
  font-size: 14px;
  color: #6B7280;
  margin: 0;  /* 移除默认边距 */
}

.policy-text a {
  color: #3B82F6;
  text-decoration: none;
}
/**login**/

.login-card-box{
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 40px;
  max-width: 480px;
  margin: auto;
  margin-top: 10rem;
}
.signup-text {
  font-weight: 700;  /* 加粗 Don't have an account? */
  color: #333;
}

.signup-link {
  color: #3B82F6;
  text-decoration: underline;  /* 添加下划线 */
  font-weight: 700;
}

.signup-container {
  margin-bottom: 60px;  /* 增加底部间距 */
}

.footer-links-container {
  margin-top: auto;  /* 将 footer 推到底部 */
}
.form-control {
  border: 1px solid #E5E7EB;
  padding: 12px 16px;
  border-radius: 8px;
  height: auto;
}

.form-control:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
  border-color: #3B82F6;
}

.btn-sign-in {
  background: #3B82F6;
  color: white;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  font-weight: 500;
}

.btn-sign-in:hover {
  background: #2563EB;
  color: white;
}

.form-check-input:checked {
  background-color: #3B82F6;
  border-color: #3B82F6;
}

.forgot-link {
  color: #3B82F6;
  text-decoration: none;
}

.signup-link {
  color: #3B82F6;
  text-decoration: none;
  font-weight: 500;
}

.footer-links {
  color: #6B7280;
  text-decoration: none;
  font-size: 14px;
}

.footer-links:hover {
  color: #374151;
}

.success-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.success-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
  color: #111;
}

.success-description {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.5;
}
.btn-back {
  background: #3B82F6;
  color: white;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.btn-back:hover {
  background: #2563EB;
  color: white;
}

/*LOGIN End*/
