/* Login Form Block Editor Styles */

.memberstack-login-form-editor {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 4px;
}

.memberstack-login-form .form-group {
  margin-bottom: 15px;
}

.memberstack-login-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.memberstack-login-form input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.memberstack-login-form input:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 1px #0073aa;
}

.memberstack-button {
  width: auto;
  padding: 10px;
  background: #0073aa;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 15px;
}

.memberstack-button:hover {
  background: #005177;
}

.memberstack-button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Social Login Buttons */
.social-login-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-login-button {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: background-color 0.2s ease;
}

.social-login-button:before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Google Button */
.social-login-button.google {
  border-color: #4285f4;
  color: #4285f4;
}

.social-login-button.google:hover {
  background-color: #4285f4;
  color: white;
}

/* GitHub Button */
.social-login-button.github {
  border-color: #333;
  color: #333;
}

.social-login-button.github:hover {
  background-color: #333;
  color: white;
}

/* Apple Button */
.social-login-button.apple {
  border-color: #000;
  color: #000;
}

.social-login-button.apple:hover {
  background-color: #000;
  color: white;
}

.social-login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
