body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
  }
  
  /* Top Logo Bar */
  .top-bar {
    background-color: #d8232b;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    height: 40px;
  }
  
  .lang-toggle button {
    background-color: #e6e6e6;
    border: none;
    padding: 6px 14px;
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .lang-toggle .active {
    background-color: #d8232b;
    color: white;
  }
  
  /* Main Layout */
  .main-container {
    display: flex;
    min-height: calc(100vh - 220px); /* Adjust based on footer/header */
    background-color: #9a0500;
  }
  
  /* Left Section (Illustration) */
  .left-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  
  .left-section img {
    max-width: 100%;
    height: auto;
  }
  
  /* Right Section (Login Form) */
  .right-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }
  
  .login-box {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .login-box h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .google-btn {
    background: white;
    border: 1.5px solid #ccc;
    color: #333;
    font-weight: 600;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .google-btn img {
    height: 18px;
    margin-right: 10px;
  }
  
  .separator {
    text-align: center;
    margin: 20px 0;
    color: #999;
  }
  
  .login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .login-btn {
    background-color: #fdb913;
    color: #000;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .login-btn:hover {
    background-color: #e5a800;
  }
  
  /* Footer */
  .footer {
    background-color: white;
    padding: 30px 20px;
    color: #333;
    font-size: 14px;
    border-top: 1px solid #ddd;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-left, .footer-right {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-icons {
    margin-top: 10px;
  }
  
  .footer-icons img {
    height: 24px;
    margin-right: 10px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .main-container {
      flex-direction: column;
    }
  
    .left-section {
      display: none;
    }
  
    .right-section {
      background-color: white;
    }
  
    .top-bar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .lang-toggle {
      margin-top: 10px;
    }
  }
  