* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #1e2431;
    color: #333;
    display: flex;
    height: 100vh;
  }
  
  .container {
    display: flex;
    width: 100%;
  }
  
  .left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  
  .left-section img {
    max-width: 80%;
    height: auto;
  }
  
  .right-section {
    background: white;
    flex: 1;
    padding: 40px;
    margin: 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    border-radius: 1%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .logo {
    display: flex;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    align-items: center;
    justify-content: center;
  }
  
  h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .google-btn {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .google-btn img {
    width: 20px;
    height: 20px;
  }
  
  .divider {
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin: 20px 0;
    position: relative;
  }
  
  .divider::before,
  .divider::after {
    content: '';
    height: 1px;
    width: 40%;
    background: #eee;
    position: absolute;
    top: 50%;
  }
  
  .divider::before {
    left: 0;
  }
  
  .divider::after {
    right: 0;
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .login-form label {
    font-size: 14px;
    margin-top: 10px;
  }
  
  .login-form input[type="text"],
  .login-form input[type="password"] {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
  }
  
  .password-wrapper {
    position: relative;
  }
  
  .password-wrapper input {
    width: 100%;
    padding-right: 35px;
  }
  
  .toggle-password {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .options {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    align-items: center;
  }
  
  .options .forgot {
    color: #28a745;
    text-decoration: none;
  }
  
  .login-btn {
    background-color: #1e2431;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 600;
  }
  
  .signup-msg {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
  }
  
  .signup-msg a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
  }
  