.deletion-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px;
}

.deletion-card {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  min-height: 500px;
}

/* 左侧警告区域 */
.warning-section {
  flex: 1;
  background: #ffffff;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  color: #000B33;
}

.warning-content {
  width: 100%;
}

.warning-icon {
  margin-bottom: 24px;
}

.warning-icon svg {
  stroke: #ffffff;
}

.warning-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000B33;
}

.warning-description {
  font-size: 15px;
  line-height: 2;
  opacity: 1;
  color: #000B33;
  margin-bottom: 32px;
}

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.warning-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  opacity: 0.95;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

/* 右侧表单区域 */
.form-section {
  flex: 1.2;
  padding: 50px 50px;
  display: flex;
  align-items: center;
}

.form-content {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: #1a1a2e;
  background: #F7F2FD;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #7550DB;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(117, 80, 219, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9ca3af;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  margin-bottom: 32px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 5px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
}

.checkbox-input:checked + .checkbox-custom {
  background: #7550DB;
  border-color: #7550DB;
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.button-group {
  width: 100%;
  margin-top: 10px;
}

.btn-delete {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #7550DB 0%, #5a3db8 100%);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-delete:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(117, 80, 219, 0.35);
}

.btn-delete:active {
  transform: translateY(0);
}


/* 验证码样式 */
.verification-container {
  display: flex;
  gap: 12px;
}

.verification-input {
  flex: 1;
  background: #F7F2FD;
}

.verification-display {
  width: 100px;
  padding: 14px 16px;
  background: #F7F2FD;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
  color: #3F1DE6;
  cursor: pointer;
  transition: all 0.2s ease;
}

.verification-display:hover {
  background: #ede5fe;
  border-color: #7550DB;
}

/* 响应式设计 */
@media (max-width: 900px) {
  .deletion-card {
    flex-direction: column;
  }

  .warning-section {
    padding: 40px 30px;
  }

  .form-section {
    padding: 40px 30px;
  }
}
.alert-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.alert-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.alert-content {
  position: relative;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.alert-icon {
  width: 48px;
  height: 48px;
  background: #F7F2FD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.alert-icon svg {
  stroke: #7550DB;
}

.alert-message {
  font-size: 15px;
  color: #1a1a2e;
  margin-bottom: 24px;
  line-height: 1.5;
}

.alert-btn {
  padding: 12px 32px;
  background: linear-gradient(135deg, #7550DB 0%, #5a3db8 100%);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.alert-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(117, 80, 219, 0.35);
}