/* 注册成功页面样式 */
.success-container {
  min-height: calc(100vh - 150px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f8f9fa;
  background-image: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.success-card {
  width: 100%;
  max-width: 500px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.success-title {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.success-subtitle {
  font-size: 16px;
  color: var(--text-color-light);
  margin-bottom: 30px;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color-light);
}

/* 响应式调整 */
@media (max-width: 576px) {
  .success-card {
    box-shadow: none;
    border-radius: 0;
    padding: 30px 20px;
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 10px;
  }
} 