body {
  font-family: sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

h1 {
  color: #333;
  margin-bottom: 20px;
}

.email-auth {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin-bottom: 20px;
}

.email-auth input {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.email-buttons {
  display: flex;
  justify-content: space-between;
}

/* General button styles */
button {
  padding: 8px 16px; /* Slightly smaller padding */
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px; /* Adjust font size as needed */
}

/* Login button styles */
.login-button {
  background-color: #007bff; /* Keep original color */
  color: white;
  border: none;
}

.login-button:hover {
  background-color: #0056b3; /* Keep original hover color */
}

/* Signup button styles */
.signup-button {
  background-color: rgb(69, 168, 69);
  color: white;
  border: none;
}

.signup-button:hover {
  background-color: #227827; /* Darker shade of green on hover */
}

/* Google OAuth button styles */
.google-oauth-button {
  background-color: #ffffff;
  color: #212121;
  border: 0.5px solid #d4d4d4;
}

.google-oauth-button:hover {
  background-color: #f0f0f0;
}

/* GitHub OAuth button styles */
.github-oauth-button {
  background-color: #333333;
  color: white;
  border: none;
}

.github-oauth-button:hover {
  background-color: #222222;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
/* Email button specific styles */
.email-buttons .login-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 16px; /* Consistent padding */
}

.email-buttons .signup-button {
  background-color: lightgreen;
  color: white;
  border: none;
  padding: 8px 16px; /* Consistent padding */
}
