body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    background: #f0f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .forgot-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 430px;
    overflow: hidden;
    text-align: center;
  }
  
  .forgot-header {
    background: #4b8b82;
    padding: 1.5rem;
    color: white;
  }
  
  .forgot-header h2 {
    margin: 0;
    font-size: 1.6rem;
  }
  
  form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .input-wrapper {
    display: flex;
    align-items: center;
    background: #f2f3f5;
    border-radius: 8px;
    padding: 0.7rem;
  }
  
  .input-wrapper .material-icons {
    margin-right: 0.6rem;
    color: #4b8b82;
  }
  
  .input-wrapper input {
    border: none;
    background: transparent;
    font-size: 1rem;
    flex: 1;
    outline: none;
  }
  
  button {
    background: #4b8b82;
    color: white;
    padding: 0.8rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    background: #3e776e;
  }
  
  .back-link {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .back-link a {
    color: #4b8b82;
    text-decoration: none;
    font-weight: bold;
  }
  