body {
      font-family: Arial, sans-serif;
      background-color: #f2f2f2;
    }
    
    .forgot-password-container {
      width: 500px;
      max-width: 90%;
      margin: 50px auto;
      padding: 30px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .forgot-password-header {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .forgot-password-form {
      margin-top: 20px;
    }
    
    .forgot-password-form input[type="email"] {
      width: 100%;
      height: 50px;
      margin-bottom: 20px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 18px;
    }
    
    .forgot-password-form input[type="submit"] {
      width: 100%;
      height: 50px;
      background-color: #4CAF50;
      color: #fff;
      padding: 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 18px;
    }
    
    .forgot-password-form input[type="submit"]:hover {
      background-color: #3e8e41;
    }
    
    .back-to-login {
      text-align: center;
      margin-top: 20px;
    }
    
    .back-to-login a {
      color: #4CAF50;
      text-decoration: none;
      font-size: 18px;
    }
    
    .back-to-login a:hover {
      color: #3e8e41;
    }