/* Google Sign-In Button Styles */
.account__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

/* Static Google Button Styles */
.account__social-btn.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 48px;
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 0 12px;
  color: #3c4043;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

.account__social-btn.google-btn:hover {
  background-color: #f8f9fa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.account__social-btn.google-btn:active {
  background-color: #f1f3f4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.account__social-btn.google-btn .google-icon {
  width: 18px;
  height: 18px;
  margin-right: 12px;
}