* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: 'Fira Code', monospace;
    background-color: #0d1117;
    color: #c9d1d9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }
  
  body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, #58a6ff33, transparent 70%);
    filter: blur(100px);
    top: -200px;
    left: -200px;
    z-index: 0;
  }
  
  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 60px 5%;
    gap: 40px;
    flex: 1;
    position: relative;
    z-index: 1;
  }
  
  .login-card {
    flex: 1;
    max-width: 400px;
    background: rgba(26, 29, 33, 0.8);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }
  
  .logo svg {
    animation: rotateOrbit 10s linear infinite;
    transform-origin: center;
  }
  
  @keyframes rotateOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  h1 {
    text-align: center;
    font-size: 22px;
    font-weight: 400;
  }
  
  h1 span {
    color: #58a6ff;
    font-weight: 600;
  }
  
  button {
    background-color: #238636;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    outline: none;
  }
  
  button:hover {
    background-color: #184f0d;
  }
  
  .login-footer {
    text-align: center;
    font-size: 13px;
    color: #8b949e;
    margin-top: 10px;
  }
  
  .info-panel {
    flex: 1.2;
    background: #161b22;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }
  
  .info-panel h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 12px;
  }
  
  .info-panel h2 span {
    color: #58a6ff;
    font-weight: 600;
  }
  
  .info-panel p {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  
  .info-panel h3 {
    font-size: 18px;
    color: #58a6ff;
    margin: 24px 0 12px;
  }
  
  .info-panel ul {
    list-style: none;
    padding: 0;
  }
  
  .info-panel li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
  }
  
  .info-panel li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #58a6ff;
  }
  
  @media (max-width: 1024px) {
    .container {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
    }
  
    .info-panel, .login-card {
      width: 100%;
    }
  }
  