.google-auth-btn {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  box-shadow: inset 0 0 15px 0 #4285f4;
  transition: all 0.3s ease;
}

.google-auth-btn:hover {
  text-decoration: none;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, 0.5);
}
.google-auth-btn:focus {
  outline: none;
  box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, 0.5);
}

.google-auth-btn .icon {
  width: 16px;
  height: 16px;
}
.google-auth-btn span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #161616;
}

.google-auth-btn.square {
  border: #afafaf;
}

/* Landing page Google button */
.google-landing-btn {
  z-index: 100;
  margin-top: 20px;
  margin-bottom: -60px;
  width: 100%;
  max-width: 400px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: inset 0 0 30px 0 #4285f4;
  text-decoration: none !important;
  color: #5c6476;
  transition: all 0.3s ease;
}

.google-landing-btn:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 20px 0 #4285f4;
}

.google-landing-btn:active {
  transform: translateY(0);
  box-shadow: inset 0 0 20px 0 #4285f4;
}

.google-landing-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.25);
}

.google-landing-btn .icon {
  width: 18px;
  height: 18px;
}

.google-landing-btn span {
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
}

/* Responsive */
@media (max-width: 768px) {
  .google-landing-btn {
    display: none;
  }
}
