.login-actions {
  display: flex;
  justify-content: center;
  gap: 12px;         /* space between the two buttons */
  margin-top: 16px;
}

.login-actions form {
  margin: 0;         /* remove default margin so they align nicely */
}

.login-actions input[type="submit"],
.login-actions button {
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
}

/* Google button styles */
.google-login-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: white;
  color: #444;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  transition: box-shadow 0.3s ease;
}

.google-login-button:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.google-login-button img {
  height: 18px;
  margin-right: 8px;
}
