.content.register {
  width: 100%;
  max-width: 428px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}

.register-title {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 24px 0;
  text-align: center;
}
.register-form {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 프로필 이미지 업로드 스타일 */
.profile-upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.profile-preview-container {
  position: relative;
  width: 120px;
  height: 120px;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e5e7eb;
  transition: border-color 0.2s ease;
}
.profile-preview-container:hover {
  border-color: #6366f1;
}
.profile-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-upload-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 12px;
}
.profile-preview-container:hover .profile-upload-overlay {
  opacity: 1;
}
.camera-icon {
  font-size: 24px;
  margin-bottom: 4px;
}
.btn-upload {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}
.btn-upload:hover {
  background-color: #e5e7eb;
  border-color: #9ca3af;
}

/* 업로드 진행률 스타일 */
.upload-progress {
  margin-top: 12px;
  text-align: center;
}
.progress-bar-container {
  width: 100%;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff4d6d, #8b5cf6);
  width: 0%;
  transition: width 0.3s ease;
}
.progress-text {
  font-size: 12px;
  color: #6b7280;
}
