/* ===== Base Styles ===== */
.forgot-password-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f9f7;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .forgot-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
  
  .forgot-card h2 {
    margin-bottom: 20px;
    color: #006A4E;
    font-size: 1.8rem;
  }
  
  .forgot-card input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
  }
  
  .forgot-card input[type="email"]:focus {
    border-color: #006A4E;
    outline: none;
  }
  
  .forgot-card button {
    padding: 12px 20px;
    background-color: #006A4E;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: background 0.3s ease-in-out;
  }
  
  .forgot-card button:hover {
    background-color: #009E70;
  }
  
  a.back-login {
    display: inline-block;
    margin-top: 18px;
    color: #006A4E;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  a.back-login:hover {
    text-decoration: underline;
    color: #009E70;
  }
  
  /* ===== Footer ===== */
  #copyright-style {
    background-color: #006A4E;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 998;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  
  .footer-icon i {
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .footer-icon i:hover {
    color: #A5D6A7;
  }
  
  /* ===== Responsive Breakpoints ===== */
  
  /* For tablets and small laptops */
  @media (max-width: 1024px) {
    .forgot-card {
      max-width: 380px;
      padding: 25px 35px;
    }
  
    .forgot-card h2 {
      font-size: 1.6rem;
    }
  
    .forgot-card button {
      font-size: 0.95rem;
    }
  }
  
  /* For iPads and portrait tablets */
  @media (max-width: 768px) {
    .forgot-password-main {
      padding: 30px;
    }
  
    .forgot-card {
      padding: 25px;
      max-width: 350px;
    }
  
    .forgot-card h2 {
      font-size: 1.5rem;
    }
  
    .forgot-card input[type="email"] {
      font-size: 0.95rem;
    }
  }
  
  /* For large smartphones */
  @media (max-width: 600px) {
    .forgot-card {
      padding: 22px;
      max-width: 90%;
    }
  
    .forgot-card h2 {
      font-size: 1.4rem;
    }
  
    .forgot-card input[type="email"] {
      font-size: 0.9rem;
    }
  
    .forgot-card button {
      font-size: 0.95rem;
    }
  
    a.back-login {
      font-size: 0.85rem;
    }
  
    #copyright-style {
      font-size: 12px;
      padding: 10px;
      flex-direction: column;
      gap: 4px;
    }
  }
  
  /* For small smartphones */
  @media (max-width: 420px) {
    .forgot-card {
      padding: 20px;
    }
  
    .forgot-card h2 {
      font-size: 1.2rem;
    }
  
    .forgot-card input[type="email"] {
      padding: 10px;
    }
  
    .forgot-card button {
      padding: 10px;
      font-size: 0.9rem;
    }
  
    #copyright-style {
      font-size: 11.5px;
    }
  }
  
  /* For very small screens or foldables */
  @media (max-width: 320px) {
    .forgot-card {
      padding: 15px;
    }
  
    .forgot-card h2 {
      font-size: 1.1rem;
    }
  
    .forgot-card button {
      font-size: 0.85rem;
    }
  }
  