/* Styles for phones */
@media only screen and (max-width: 480px) {

}

/* Styles for tablets */
@media only screen and (min-width: 481px) and (max-width: 768px) {

}

/* Styles for laptops */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
 
}

/* Styles for desktops */
@media only screen and (min-width: 1025px) {
 
}


/*  reminder note */
    .reminder-note {
      background-color: #FCE77D;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      font-family: Arial, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      color: #333;
  }
  
  .reminder-note p {
      margin: 0 0 10px;
  }

  .reminder-note .header {
      font-size: 24px;
      font-weight: bold;
      color: #333;
      text-transform: uppercase;
      margin-bottom: 20px;
  }

  .reminder-note .content {
      color: #555;
      font-size: 18px;
      margin-bottom: 20px;
  }

  .reminder-note .footer {
      background-color: #FF5C58;
      color: #fff;
      padding: 10px;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      text-transform: uppercase;
  }




 

    /* footer */
    footer {
      background-color: #f5f5f5;
      padding: 20px;
      text-align: center;
      border-top: 1px solid #dddddd;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
    }
  
    footer p {
      margin: 0;
      color: #888888;
      font-size: 14px;
    }

 