.MobileLogin {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: linear-gradient(180deg, #E6F2FF 0%, #ffffff 80%);
  padding: 20px;
  overflow: hidden;
}
.MobileLogin .bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}
.MobileLogin .circle1 {
  width: 200px;
  height: 200px;
  background: #0A84FF;
  top: -80px;
  left: -60px;
}
.MobileLogin .circle2 {
  width: 150px;
  height: 150px;
  background: #34C759;
  bottom: -70px;
  right: -40px;
}
.MobileLogin .login-top {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.MobileLogin .login-top .login-logo {
  width: 100px;
  height: auto;
}
.MobileLogin .login-middle {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  z-index: 1;
}
.MobileLogin .login-middle .login-input {
  padding: 12px 15px;
  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;
}
.MobileLogin .login-middle .login-input:focus {
  border-color: #0A84FF;
  box-shadow: 0 0 8px rgba(10, 132, 255, 0.25);
}
.MobileLogin .login-middle .login-btn {
  padding: 14px;
  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;
}
.MobileLogin .login-middle .login-btn:hover {
  background: rgb(0, 119.2612244898, 239.5);
  box-shadow: 0 6px 20px rgba(10, 132, 255, 0.4);
}
.MobileLogin .login-middle .login-btn:active {
  transform: scale(0.98);
}
.MobileLogin .login-bottom {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13px;
  z-index: 1;
}
.MobileLogin .login-bottom a {
  color: #0A84FF;
  text-decoration: none;
}
.MobileLogin .login-bottom a:hover {
  text-decoration: underline;
}

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