/* Social login icons */
.other-login-google,
.other-login-facebook,
.other-login-twitter {
  display: inline-block;
  width: 55px;
  height: 55px;
  margin: 0 15px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 24px;
  color: #fff;
  transition: all 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
  border: 2px solid rgba(255,255,255,0.5);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.other-login-google {
  background-color: #FF4757; /* Brighter red */
  background-image: linear-gradient(135deg, #FF4757, #FF6B81);
}

.other-login-facebook {
  background-color: #4267B2; /* Brighter blue */
  background-image: linear-gradient(135deg, #4267B2, #5B7BD5);
}

.other-login-twitter {
  background-color: #1DA1F2; /* Keep original color but add gradient */
  background-image: linear-gradient(135deg, #1DA1F2, #45B8FF);
}

.other-login-google:hover,
.other-login-facebook:hover,
.other-login-twitter:hover {
  opacity: 1;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.8);
  filter: brightness(1.1);
}

/* Social media icons */
.icon-google:before {
  content: "G";
  font-weight: bold;
  font-size: 28px;
  display: block;
  margin-top: -2px;
}

.icon-facebook:before {
  content: "f";
  font-weight: bold;
  font-size: 28px;
  display: block;
  margin-top: -2px;
}

.icon-twitter:before {
  content: "t";
  font-weight: bold;
  font-size: 28px;
  display: block;
  margin-top: -2px;
}
