body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f7fc;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

h1 {
  font-size: 32px;
  color: #0057e7; /* Deep blue */
  margin-bottom: 30px;
}

.email-auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 30px;
}

.email-auth input {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
}

.email-buttons {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.email-buttons button,
#forgotPasswordBtn,
#googleLogin,
#githubLogin {
  padding: 10px 14px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#loginBtn {
  background-color: #0057e7; /* Blue */
  color: white;
}

#signupBtn {
  background-color: #fdd835; /* Yellow */
  color: #333;
}

#forgotPasswordBtn {
  background-color: transparent;
  color: #0057e7;
  text-align: left;
  font-size: 13px;
  padding: 0;
  margin-top: 4px;
}

#googleLogin {
  background-color: white; /* White */
  color: #333333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#githubLogin {
  background-color: #3b3838; /* Grey */
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon {
  width: 18px;
  height: 18px;
}