body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    text-align: center;
    width: 100%;
    max-width: 360px;
  }
  
  .logo {
    width: 80px;
    margin-bottom: 20px;
  }
  
  h2 {
    margin: 10px 0 5px;
    font-weight: 600;
  }
  
  .subtitle {
    color: #333;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .switch-btn {
    padding: 8px 16px;
    border: none;
    background-color: #d9d9d9;
    color: black;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .switch-btn.active {
    background-color: #5E7456;
    color: white;
  }
  
  .switch-btn:hover {
    background-color: #4CAF50;
    color: white;
  }
  
  .form-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  input[type="text"],
  input[type="password"] {
    padding: 14px;
    background-color: #c6d5c0;
    border: none;
    border-radius: 2px;
    text-align: left;
    font-size: 15px;
    color: #000;
  }
  
  input::placeholder {
    color: #000;
  }
  
  .submit-btn {
    background-color: #5E7456;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #4CAF50;
  }
  
  .remember {
    text-align: left;
    margin: 10px 0;
    font-size: 14px;
  }