* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; }

.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  position: relative;
  background: url('assets/galaxy-hero.png') center left / cover no-repeat;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.hero-left {
  width: 62%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-left: 8vw;
}

.brand-card { max-width: 560px; }

.mini-logo {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255,215,120,.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd56b;
  font-weight: 800;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(54px, 8vw, 108px);
  letter-spacing: -4px;
  line-height: .9;
  text-shadow: 0 8px 28px rgba(0,0,0,.5);
}

.tagline {
  font-size: clamp(18px, 2vw, 28px);
  margin-top: 24px;
  line-height: 1.35;
  max-width: 520px;
  color: rgba(255,255,255,.92);
}

.features {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.features div {
  min-width: 140px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}

.features span { color: #ffd56b; font-size: 22px; }
.features p { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.88); }

.cta {
  display: inline-block;
  margin-top: 34px;
  padding: 15px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3a7bff, #8d4dff);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.login-panel {
  width: 38%;
  min-height: 100vh;
  margin-left: auto;
  position: relative;
  z-index: 2;
  background: white;
  color: #101426;
  border-radius: 260px 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 50px 70px 90px;
  box-shadow: -24px 0 70px rgba(0,0,0,.22);
}

.login-box { width: 100%; max-width: 360px; }
.login-box h2 { font-size: 34px; margin-bottom: 12px; }
.login-box p { color: #6a6f83; line-height: 1.5; margin-bottom: 22px; }

label { display: block; margin: 14px 0 8px; font-weight: 700; font-size: 14px; }

input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid #d9dce8;
  font-size: 15px;
  outline: none;
}

.login-btn,
.create-btn {
  display: block;
  width: 100%;
  padding: 15px 18px;
  margin-top: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 18px;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 16px;
}

.login-btn {
  background: linear-gradient(135deg,#2f78ff,#8d4dff);
  color: white;
  border: none;
}

.create-btn {
  background: white;
  color: #25304f;
  border: 1px solid #cfd4e8;
}

.corner-logo {
  position: absolute;
  right: 34px;
  bottom: 28px;
  color: #c49a2c;
  font-weight: 900;
  font-size: 22px;
}

@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; }
  .hero-left { width: 100%; min-height: 62vh; padding: 60px 26px; }
  .login-panel {
    width: 100%;
    min-height: auto;
    border-radius: 46px 46px 0 0;
    padding: 42px 26px 70px;
    
  }
}
.mg-logo{
font-size:28px;
font-weight:900;
letter-spacing:-2px;
color:#c49a2c;
}

.galaxy-text{
font-size:6px;
letter-spacing:2px;
text-transform:uppercase;
margin-top:2px;
color:#777;
}

.corner-logo{
position:absolute;
right:34px;
bottom:28px;
text-align:center;
}