* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f7f9fc;
  }
  
  .forgot-password-container {
    display: flex;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
  }
  
  .illustration {
    background-color: #f0f5ff;
    padding: 20px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .illustration img {
    max-width: 100%;
    height: auto;
  }
  
  .form-section {
    flex: 1;
    padding: 40px;
    text-align: center;
  }
  
  .form-section h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .form-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .form-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-section input[type="email"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
  }
  
  .form-section button {
    padding: 12px;
    background-color: #5a67d8;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .form-section button:hover {
    background-color: #434fcf;
  }
  
  .form-section a {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #5a67d8;
    text-decoration: none;
  }
  
  .form-section a:hover {
    text-decoration: underline;
  }
  