/* Google Sign-in Button */
.social-login, .social-signup, .social-auth {
  margin: 20px 0;
  text-align: center;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #757575;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  margin: 10px auto;
}

.btn-google:hover {
  background-color: #f5f5f5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.24);
  color: #555555;
  text-decoration: none;
}

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

.social-login hr, .social-signup hr, .social-auth hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  margin: 15px 0;
}

/* Styling for social auth pages */
.auth-container {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.auth-container button.button {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 15px;
}

.auth-container button.button:hover {
  background-color: #45a049;
}

/* Styling for social provider list */
ul.socialaccount_providers {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.socialaccount_provider {
  font-weight: bold;
}

/* Social Auth Popup Styles */
.social-auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.social-auth-popup {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  animation: fadeIn 0.3s ease-out;
}

.social-auth-content {
  padding: 20px;
  text-align: center;
}

.social-auth-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.social-auth-content button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.social-auth-content button:hover {
  background-color: #45a049;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}