:root {
  --accent-gradient: linear-gradient(90deg, #1cb3f5, #3e79f2);
  --text-muted: #888;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: monospace;
}

.homepage-container {
  display: flex;
  min-height: 100vh;
  flex-direction: row;
  overflow-x: hidden;
}

.info-section {
  flex: 65%;
  background: var(--accent-gradient);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2em, 6vw, 4.5em) clamp(2em, 6vw, 6em);
  color: #fff;
  position: relative;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-section .logo {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

.info-text h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-subtitle {
  font-size: 1.6rem;
  opacity: 0.95;
  margin-top: -0.2rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.info-lead {
  font-size: 1.12rem;
  opacity: 0.92;
  max-width: 780px;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
}

.info-text p {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  opacity: 0.9;
  max-width: 760px;
}

.info-tagline {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-top: 0.6rem;
  max-width: 760px;
  line-height: 1.45;
}

.info-copy {
  margin-top: 0.9rem;
  max-width: 820px;
}

.info-copy p {
  margin: 0 0 0.65rem 0;
  font-size: 1rem;
  opacity: 0.88;
  line-height: 1.45;
}

.info-copy strong {
  opacity: 1;
}

.features {
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.8rem 1rem;
  margin-top: 2rem;
}

.feature {
  display: inline-flex; 
  align-items: center; 
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1rem;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  font-size: 0.95rem;
}

.feature img { 
  width: 22px; 
  height: 22px; 
}

.info-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1.2rem;
  max-width: 820px;
}

.info-step {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.13);
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  font-size: 0.95rem;
}

.info-step .step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  font-weight: 700;
}

.login-section {
  flex: 35%;
  background-color: #11141b;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
}

.login-section .card-panel {
  width: 100%;
  max-width: 420px;
  background: #1a1d24;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.homepage-input {
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: none;
  padding: 0.8rem 0;
  color: white;
  width: 100%;
}

.homepage-input:focus {
  border-color: #3e79f2;
  outline: none;
}

.auth-link {
  background: none;
  border: none;
  color: #1cb3f5;
  cursor: pointer;
  padding: 0;
  font-weight: 600;
}

.auth-link:hover { 
  text-decoration: underline; 
}

.signup-part,
.forgot-password {
  width: 100%;
  text-align: center;
  color: var(--text-muted);
}

.copyright {
  position: fixed; 
  bottom: 15px; 
  left: 20px;
  font-size: 0.85rem; 
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .homepage-container { flex-direction: column; }
  .info-section, .login-section { width: 100%; text-align: center; }
  .info-section, .login-section { flex: 0 0 auto; }
  .info-section { padding: 2.2em 1.6em; justify-content: flex-start; }
  .login-section { padding: 1.6em; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .info-text { margin-bottom: 0.8em; margin-top: 0.8em; }
  .card-panel { margin: 1.2em auto 1.8em auto; width: min(460px, 92vw) !important; }
  .features, .info-steps, .info-text { align-items: center; justify-content: center; }
  .copyright { position: relative; left: 2px; color: white;}
}

@media (max-width: 480px) {
  .info-text h1 { font-size: 3.2rem; }
  .info-subtitle { font-size: 1rem; margin-bottom: 0.7rem; }
  .info-lead { font-size: 1rem; }
  .info-tagline { font-size: 0.95rem; margin-top: 0.45rem; }

  .features { margin-top: 1.2rem; gap: 0.6rem 0.7rem; }
  .feature { padding: 0.5rem 0.75rem; font-size: 0.82rem; border-radius: 11px; }
  .feature img { width: 18px; height: 18px; }

  .info-steps { margin-top: 0.9rem; gap: 0.6rem 0.7rem; }
  .info-step { padding: 0.45rem 0.7rem; font-size: 0.82rem; border-radius: 11px; }
  .info-step .step-n { width: 22px; height: 22px; }
}