/* Social Auth Buttons */
.eclecty-social-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.social-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px; /* Standard rounding, adjust as needed */
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid transparent;
}

.social-auth-btn:hover {
    text-decoration: none;
    opacity: 0.9;
}

/* Google Button */
.social-auth-btn.google-btn {
    background-color: #ffffff;
    color: #1f1f1f;
    border: 1px solid #747775;
}

.social-auth-btn.google-btn:hover {
    background-color: #f8f9fa;
    border-color: #747775;
}

/* Facebook Button */
.social-auth-btn.facebook-btn {
    background-color: #1877F2;
    color: #ffffff;
}

.social-auth-btn.facebook-btn:hover {
    background-color: #166fe5;
}

/* Disabled State */
.social-auth-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
