.MobileRegister {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  background: linear-gradient(180deg, #E6F2FF 0%, #ffffff 80%);
  padding: 20px;
  overflow: hidden;
}
.MobileRegister .bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}
.MobileRegister .circle1 {
  width: 200px;
  height: 200px;
  background: #0A84FF;
  top: -80px;
  left: -60px;
}
.MobileRegister .circle2 {
  width: 150px;
  height: 150px;
  background: #34C759;
  bottom: -70px;
  right: -40px;
}
.MobileRegister .register-top {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.MobileRegister .register-top .register-logo {
  width: 100px;
  height: auto;
}
.MobileRegister .scroll-hint {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
  margin-bottom: 4px;
  z-index: 1;
  animation: hintFloat 1.6s ease-in-out infinite;
}
.MobileRegister .scroll-hint .chevron {
  display: inline-block;
  margin-left: 4px;
  animation: hintBounce 1.6s ease-in-out infinite;
}
.MobileRegister .scroll-hint.hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  animation: none;
}
.MobileRegister .input-container-m {
  margin-bottom: 12px;
}
.MobileRegister .register-middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: 1;
  overflow-y: auto;
}
.MobileRegister .register-middle .register-input {
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: border 0.2s, box-shadow 0.2s;
}
.MobileRegister .register-middle .register-input:focus {
  border-color: #0A84FF;
  box-shadow: 0 0 8px rgba(10, 132, 255, 0.25);
}
.MobileRegister .register-bottom {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13px;
  z-index: 1;
}
.MobileRegister .register-bottom a {
  color: #0A84FF;
  text-decoration: none;
}
.MobileRegister .register-bottom a:hover {
  text-decoration: underline;
}

.register-btn {
  width: 100%;
  padding: 14px;
  margin-top: 5px;
  border: none;
  border-radius: 12px;
  background: #0A84FF;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(10, 132, 255, 0.3);
  transition: 0.3s;
}
.register-btn:hover {
  background: rgb(0, 119.2612244898, 239.5);
  box-shadow: 0 6px 20px rgba(10, 132, 255, 0.4);
}
.register-btn:active {
  transform: scale(0.98);
}

.captcha-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.captcha-group .captcha-input {
  flex: 1;
}
.captcha-group .captcha-btn {
  padding: 12px 14px;
  white-space: nowrap;
  border: none;
  border-radius: 10px;
  background: #0A84FF;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(10, 132, 255, 0.2);
  transition: 0.3s;
}
.captcha-group .captcha-btn:hover:not(:disabled) {
  background: rgb(0, 119.2612244898, 239.5);
}
.captcha-group .captcha-btn:active:not(:disabled) {
  transform: scale(0.96);
}
.captcha-group .captcha-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
}

.select-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
}
.select-wrapper .register-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f9f9f9 url("data:image/svg+xml;utf8,<svg fill='%23666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
  background-size: 20px;
  color: #333;
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.select-wrapper .register-select:focus {
  border-color: #0A84FF;
  outline: none;
  background-color: #fff;
}

@keyframes hintFloat {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/*# sourceMappingURL=RegistrationPage.css.map */
