/* Base styles for body */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content styles */
main {
  padding-top: 60px; /* Adjust this value to the height of your header */
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Form container styles */
.forgot-password-container {
  background: #fff;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
}


/* Responsive design adjustments */
@media (max-width: 768px) {
  .forgot-password-container {
    width: 80%;
    margin: 20px;
    padding: 15px;
  }

  header, footer {
    padding: 10px;
  }
}

/* Additional styles for form elements and buttons can be added here */