* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f9ff;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.login-side {
  position: relative;
  width: 48%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(70, 120, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
  z-index: 2;
}

.login-card {
  width: 480px;
  min-height: 500px;
  padding: 50px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(22, 41, 90, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 160px;
  height: auto;
  margin-bottom: 48px;
}

.google-btn {
  width: 100%;
  height: 62px;
  border: 0;
  border-radius: 14px;
  background: #3455db;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 16px 28px rgba(52, 85, 219, 0.28);
  transition: 0.2s ease;
}

.google-btn:hover {
  transform: translateY(-2px);
  background: #2948c9;
  box-shadow: 0 20px 34px rgba(52, 85, 219, 0.34);
}

.google-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side {
  position: relative;
  width: 52%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-side::before {
  content: "";
  position: absolute;
  left: -170px;
  top: -8%;
  width: 330px;
  height: 116%;
  background: #f7f9ff;
  border-radius: 50%;
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.dots {
  position: absolute;
  width: 110px;
  height: 110px;
  opacity: 0.55;
  background-image: radial-gradient(#b9cafa 3px, transparent 3px);
  background-size: 18px 18px;
}

.dots-top {
  left: 82px;
  top: 180px;
}

.dots-bottom {
  right: -38px;
  bottom: 190px;
}

@media (max-width: 1050px) {
  .page {
    flex-direction: column;
  }

  .login-side,
  .hero-side {
    width: 100%;
  }

  .login-side {
    min-height: 60vh;
    padding: 40px 20px;
  }

  .hero-side {
    min-height: 40vh;
  }

  .hero-side::before {
    display: none;
  }

  .login-card {
    width: min(480px, 100%);
  }
}

@media (max-width: 520px) {
  .login-card {
    padding: 34px 24px;
    min-height: 420px;
  }

  .logo {
    width: 130px;
    margin-bottom: 36px;
  }
}
