/* ===================================================================
   注册页面专用样式 - 独立定义但保持视觉一致性
   =================================================================== */

/*#region 注册页面布局 */
.register-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 40px;
}

/* 主容器 */
.fintechdb-register {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* 注册容器 */
.register-container {
  max-width: 1000px;
  max-height: 600px;
  margin: 2rem auto;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease-out;
  position: relative;
  z-index: 1;
}

/* 左侧信息区域 */
.register-left {
  flex: 1;
  background: linear-gradient(135deg, rgba(160, 80, 70, 0.9) 0%, rgba(232, 208, 179, 0.85) 100%);
  padding: 3rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* 右侧表单区域 */
.register-right {
 
  flex: 1;
  background: rgba(255, 255, 255, 0.5);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 左侧内容样式 */
.register-left-content {
  position: relative;
  z-index: 1;
}

.register-logo {
  margin-bottom: 0.1rem;
  font-size: 8rem;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* 装饰背景图案 */
.register-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="rgba(255, 255, 255, 0.15)" stroke-width="1"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255, 255, 255, 0.1)" stroke-width="1"/></svg>');
  background-repeat: repeat;
  opacity: 0.5;
}

/* 中国风装饰 */
.register-ornament {
  position: absolute;
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.register-ornament.top {
  top: 20px;
  right: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 Q10,10 50,10 Q90,10 90,50 Q90,90 50,90 Q10,90 10,50 Z" fill="none" stroke="rgba(255, 255, 255, 0.8)" stroke-width="2"/></svg>');
}

.register-ornament.bottom {
  bottom: 20px;
  left: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="rgba(255, 255, 255, 0.8)" stroke-width="2"/></svg>');
}

/* 特性列表样式 */
.register-features {
  margin-top: 0rem;
}

.register-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0rem;
  font-size: 0.8rem;
}

.register-feature i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* 表单样式 */
.register-form-title {
  font-size: 2.5rem;
  margin-bottom: 0.2rem;
  color: var(--chinese-ink);
  text-align: center;
  position: relative;
}

.register-form-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.register-form {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.form-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: var(--light-text);
}

.form-group {
  margin-bottom: 0.1rem;
  position: relative;
}

.input-wrapper {
  position: relative;
  background-color: rgba(255, 255, 255, 0);
}

.form-control {
  width: 100%;
  padding: 12px 16px 12px 45px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light-text);
}

.register-button {
  width: 100%;
  /* padding: 12px 20px; */
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.2rem;
  box-shadow: 0 5px 15px rgba(160, 80, 70, 0.2);
}

.register-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(160, 80, 70, 0.3);
}

.login-now {
  text-align: center;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  color: var(--light-text);
}

.login-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.login-link:hover {
  text-decoration: underline;
}
/*#endregion */

/* 添加动画关键帧 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
} 