/* button[type="submit"] { */
/*   color: white; */
/*   border: none; */
/*   padding: 10px; */
/*   border-radius: 4px; */
/*   cursor: pointer; */
/*   font-weight: 600; */
/*   transition: background 0.3s ease; */
/* } */

/* button[type="submit"]:hover { */
/*   background-color: #0056b3; */
/* } */


hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Container for social buttons */
.social-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px; /* space between Google and Apple buttons */
  font-weight: 600;
}

/* Google Button */
.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  color: #444;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  width: 300px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.google-btn img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.google-btn:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Apple Button */
.apple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 300px;
}

.apple-btn img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  filter: invert(1); /* makes logo white */
}

.apple-btn:hover {
  opacity: 0.8;
}

/* Email Button */
.email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  color: #444;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
  width: 300px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.email-btn img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}


