  :root {
      --gold-primary: #D4AF37;
      --gold-secondary: #FFD700;
      --gold-light: #F9F5E9;
      --silver-primary: #C0C0C0;
      --silver-secondary: #E8E8E8;
      --dark-bg: #1A1A1A;
  }

  body {
      font-family: 'Poppins', sans-serif;
      background: url('./bg3.jpeg') no-repeat center center fixed;
      background-size: cover;
      color: #333;
      margin: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
  }

  body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 0;
  }

  .login-container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      position: relative;
      z-index: 1;
  }

  .info-panel {
      background: linear-gradient(135deg, var(--dark-bg) 0%, #2c2c2c 100%);
      color: white;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
  }

  .info-panel::before {
      display: none;
  }

  @keyframes float {
      0% {
          transform: translate(0, 0) rotate(0deg);
      }

      100% {
          transform: translate(-5%, -5%) rotate(360deg);
      }
  }

  .app-name {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--gold-primary);
      position: relative;
  }

  .app-description {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.6;
      margin-bottom: 30px;
      position: relative;
  }

  .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
      position: relative;
  }

  .feature-list li {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 0.95rem;
  }

  .feature-list i {
      color: var(--gold-primary);
      margin-right: 10px;
      font-size: 1.2rem;
  }

  .metal-price-ticker {
      background: rgba(0, 0, 0, 0.3);
      border-radius: 8px;
      padding: 15px;
      margin-top: 30px;
      position: relative;
  }

  .metal-price {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
  }

  .metal-price:last-child {
      margin-bottom: 0;
  }

  .metal-name {
      display: flex;
      align-items: center;
  }

  .metal-name i {
      margin-right: 8px;
  }

  .gold-price {
      color: var(--gold-secondary);
  }

  .silver-price {
      color: var(--silver-secondary);
  }

  .form-panel {
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gold-light);
  }

  .login-card {
      width: 100%;
      max-width: 380px;
  }

  .logo {
      text-align: center;
      margin-bottom: 30px;
  }

  .logo-icon {
      font-size: 2.5rem;
      color: var(--gold-primary);
      margin-bottom: 10px;
  }

  .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--dark-bg);
      font-weight: 700;
  }

  .form-title {
      font-weight: 600;
      margin-bottom: 25px;
      color: var(--dark-bg);
      font-size: 1.5rem;
      text-align: center;
  }

  .form-control {
      padding: 12px 15px;
      border-radius: 6px;
      border: 1px solid #ddd;
      transition: all 0.3s;
  }

  .form-control:focus {
      border-color: var(--gold-primary);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  }

  .input-icon {
      color: #a0aec0;
  }

  .btn-login {
      background: linear-gradient(135deg, var(--gold-primary) 0%, #BF9B30 100%);
      border: none;
      color: white;
      padding: 12px;
      border-radius: 6px;
      font-weight: 500;
      transition: all 0.3s;
      width: 100%;
  }

  .btn-login:hover {
      background: linear-gradient(135deg, #BF9B30 0%, var(--gold-primary) 100%);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
  }

  .divider {
      display: flex;
      align-items: center;
      margin: 25px 0;
      color: #a0aec0;
  }

  .divider::before,
  .divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background-color: #e2e8f0;
  }

  .divider-text {
      padding: 0 15px;
      font-size: 0.9rem;
  }

  .register-link {
      color: var(--gold-primary);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
      display: block;
      text-align: center;
  }

  .register-link:hover {
      color: #BF9B30;
  }

  @media (max-width: 992px) {
      .login-container {
          flex-direction: column;
          max-width: 500px;
      }

      .info-panel {
          padding: 30px;
      }

      .form-panel {
          padding: 30px;
      }

      .left {
          display: none !important;
      }

      .login-container {
          margin: 40px;
          border-radius: 10px;
      }
  }

  @media (max-width: 576px) {
      .login-container {
          border-radius: 0;
          box-shadow: none;
      }

      .form-panel {
          padding: 30px;
      }

      .info-panel::before {
          display: none;
      }

      .login-container {
          margin: 40px;
          border-radius: 10px;
      }
  }